-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.25 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
87
88
89
90
91
92
93
94
{
"name": "@super-protocol/ctl",
"version": "0.14.8",
"description": "A tool for publishing values in a secure and reliable way.",
"main": "./build/index.js",
"type": "commonjs",
"author": "SuperProtocol",
"bin": "build/index.js",
"scripts": {
"dev": "tsx --tsconfig tsconfig.build.json src/index.ts",
"build:prepare": "tsc -p tsconfig.build.json",
"build": "npm run build:prepare && pkg -o dist/spctl . --no-bytecode --public-packages \"*\" --public",
"build:win:x64": "npm run build -- --target win-x64",
"build:win:arm64": "npm run build -- --target win-arm64",
"build:linux:x64": "npm run build -- --target linux-x64",
"build:linux:arm64": "npm run build -- --target linux-arm64",
"build:mac:x64": "npm run build -- --target macos-x64",
"build:mac:arm64": "npm run build -- --target macos-arm64",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts . --fix",
"generate:gql": "graphql-codegen --config codegen.js",
"test": "jest",
"bump": "npm version prerelease --preid=beta && npm run tag:publish",
"patch:beta": "npm version prepatch --preid=beta && npm run tag:publish",
"minor:beta": "npm version preminor --preid=beta && npm run tag:publish",
"major:beta": "npm version premajor --preid=beta && npm run tag:publish",
"patch": "npm version patch && npm run tag:publish",
"minor": "npm version minor && npm run tag:publish",
"major": "npm version major && npm run tag:publish",
"tag:publish": "git push origin && git push origin $(git tag --points-at HEAD)"
},
"license": "MIT",
"private": true,
"dependencies": {
"@amplitude/node": "^1.10.2",
"@iarna/toml": "^2.2.5",
"@super-protocol/distributed-secrets": "1.2.0",
"@super-protocol/dto-js": "1.3.0",
"@super-protocol/sdk-js": "3.17.2",
"@super-protocol/sp-files-addon": "0.12.5",
"@types/tar-stream": "^3.1.3",
"axios": "1.6.2",
"bip39": "^3.1.0",
"cli-progress": "^3.12.0",
"colors": "^1.4.0",
"commander": "^8.3.0",
"console-table-printer": "^2.12.1",
"dotenv": "^10.0.0",
"ethers": "^5.6.8",
"fstream": "^1.0.12",
"graphql": "^16.4.0",
"graphql-request": "~5.1.0",
"graphql-tag": "^2.12.6",
"inquirer": "^8.2.6",
"lodash": "^4.17.21",
"luxon": "^2.4.0",
"semver": "^7.5.4",
"tar": "^6.1.11",
"tar-stream": "^3.1.7",
"uuid": "^9.0.1",
"web3-validator": "^2.0.4",
"zod": "^3.11.6",
"zod-error": "^1.0.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-graphql-request": "^4.4.6",
"@graphql-codegen/typescript-operations": "^2.3.6",
"@super-protocol/eslint-config-typescript": "2.0.1",
"@types/cli-progress": "^3.9.2",
"@types/get-folder-size": "^2.0.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/luxon": "^2.3.2",
"@types/tar": "^6.1.1",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1"
},
"pkg": {
"assets": [
"config.example.json",
"node_modules/@super-protocol/uplink-nodejs/build/Release/*",
"node_modules/axios/**/*"
]
},
"files": [
"build"
]
}