-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 887 Bytes
/
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
{
"name": "@glitch-gremlin/cli",
"version": "0.1.0",
"main": "dist/index.js",
"bin": {
"glitch": "dist/index.js"
},
"scripts": {
"build": "npx tsc --project tsconfig.json",
"clean": "rm -rf dist",
"test": "jest",
"test:security": "npm audit --production --audit-level=moderate && snyk test",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"audit": "npm audit --production --audit-level=moderate"
},
"dependencies": {
"@glitch-gremlin/sdk": "file:../sdk",
"@solana/web3.js": "^1.98.0",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^4.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.11",
"@jest/globals": "^29.7.0",
"cross-env": "^7.0.3"
}
}