-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "turbo-cli",
"version": "1.0.0",
"main": "./dist/cli.js",
"type": "module",
"author": {
"name": "Permanent Data Solutions Inc",
"email": "[email protected]",
"website": "https://ardrive.io"
},
"engines": {
"node": ">=18"
},
"license": "AGPL-3.0-or-later",
"bin": {
"turbo": "./dist/cli.js"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"semantic-release": "^24.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@ardrive/turbo-sdk": "alpha",
"bs58": "^6.0.0",
"commander": "^12.1.0"
},
"scripts": {
"start": "node dist/cli.js",
"build": "yarn clean && tsc",
"dev": "tsc -w",
"clean": "rimraf [ dist ]",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "echo \"No tests specified\" && exit 0"
}
}