-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.1 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.1 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
{
"name": "@trustvc/trustvc-cli",
"version": "1.0.1",
"description": "CLI tool for TrustVC",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"bin": {
"trustvc": "dist/main.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint . --color --format=table --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\" \"tests/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\" \"tests/**/*.{ts,js,json}\"",
"start": "node dist/main.js",
"dev": "npm run build && npm start",
"build": "npm run clean && tsup",
"clean": "rm -rf dist/",
"prepare": "husky"
},
"keywords": [
"trustvc"
],
"author": "IMDA",
"license": "Apache-2.0",
"engines": {
"node": ">=22.19.5"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"@trustvc/trustvc": "^2.11.1",
"@types/yargs": "^17.0.32",
"chalk": "^4.1.2",
"dotenv": "^16.0.0",
"ethers": "^6.15.0",
"inquirer": "^13.1.0",
"node-fetch": "^3.3.2",
"signale": "^1.4.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.19.5",
"@types/signale": "^1.4.7",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-table": "^7.32.1",
"husky": "^9.0.11",
"prettier": "^3.7.4",
"semantic-release": "^25.0.3",
"tsup": "^8.2.4",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TrustVC/trustvc-cli.git"
},
"bugs": {
"url": "https://github.com/TrustVC/trustvc-cli/issues"
},
"homepage": "https://github.com/TrustVC/trustvc-cli#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"private": false
}