-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.3 KB
/
package.json
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
{
"name": "@versumstudios/cli",
"version": "1.4.4",
"preferGlobal": true,
"license": "Apache-2.0",
"description": "The command-line interface for versum",
"author": "versumstudios",
"homepage": "https://versum.xyz",
"repository": {
"type": "git",
"url": "https://github.com/versumstudios/cli.git"
},
"keywords": [
"versum",
"cli",
"tezos"
],
"scripts": {
"dev": "rimraf ./bin && ncc build ./src/index.ts -w -o bin/",
"build": "rimraf ./bin && ncc build ./src/index.ts -o ./bin/ --minify --no-cache --no-source-map-register",
"test": "echo \"Error: no test specified\" && exit 1",
"local:install": "npm install -g .",
"local:uninstall": "npm uninstall -g @versumstudios/cli",
"local:link": "yarn local:uninstall && yarn local:install",
"prettier": "prettier --write ./src",
"eslint": "eslint \"**/*.{ts,tsx}\" --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run eslint",
"publish": "yarn build && np"
},
"files": [
"bin"
],
"main": "./bin/index.js",
"bin": {
"versum": "./bin/index.js"
},
"engines": {
"node": ">=16"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/inquirer": "^8.2.1",
"@types/node": "^18.0.6",
"@types/node-fetch": "^2.6.2",
"@types/objects-to-csv": "^1.3.1",
"@types/rimraf": "^3.0.2",
"@types/tar": "^6.1.1",
"@types/update-notifier": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"np": "^7.6.2",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@taquito/utils": "^13.0.1",
"chalk": "4.1.2",
"commander": "^9.4.0",
"got": "^12.3.0",
"inquirer": "8.0.0",
"node-fetch": "2.6.7",
"objects-to-csv": "^1.3.6",
"ora": "5.4.1",
"tar": "^6.1.11",
"update-notifier": "^6.0.2"
}
}