-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"type": "module",
"name": "@thalalabs/safely",
"version": "0.4.5",
"main": "index.js",
"bin": {
"safely": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"test:run": "vitest run",
"format": "prettier --write \"**/*.{js,ts,json,md}\" --ignore-path .gitignore",
"docgen": "node dist/index.js docgen -o docs.md",
"release:changeset": "pnpm changeset",
"release:version": "pnpm changeset version",
"release:publish": "pnpm build && pnpm changeset publish"
},
"keywords": [],
"description": "A highly visible CLI tool for managing multisig on Aptos.",
"author": "ThalaLabs",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThalaLabs/safely.git"
},
"files": [
"dist",
"README.md",
"docs.md"
],
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.1",
"@types/react": "^19.1.13",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "2.1.8"
},
"overrides": {
"ansi-styles": "6.2.1",
"chalk": "5.3.0",
"debug": "4.4.1",
"supports-color": "10.2.0",
"strip-ansi": "7.1.0",
"ansi-regex": "6.2.0",
"wrap-ansi": "9.0.0",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"is-arrayish": "0.3.2",
"slice-ansi": "7.1.0",
"color": "5.0.0",
"color-string": "2.0.1",
"simple-swizzle": "0.2.2",
"supports-hyperlinks": "4.1.0",
"chalk-template": "1.1.0",
"backslash": "0.2.0",
"is-core-module": "2.13.1",
"error-ex": "1.3.2",
"has-ansi": "5.0.1"
},
"dependencies": {
"@aptos-labs/ts-sdk": "^1.35.0",
"@inquirer/prompts": "^7.2.0",
"@ledgerhq/errors": "^6.19.1",
"@ledgerhq/hw-transport": "^6.31.4",
"@ledgerhq/hw-transport-node-hid": "^6.29.5",
"chalk": "5.3.0",
"commander": "^12.1.0",
"ink": "^6.3.1",
"ink-link": "^5.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.1.1",
"yaml": "^2.6.1"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}