-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
64 lines (64 loc) · 1.94 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
{
"license": "GPL",
"type": "commonjs",
"dependencies": {
"@alephium/cli": "workspace:*",
"@alephium/web3": "workspace:*",
"@alephium/web3-test": "workspace:*",
"@alephium/web3-wallet": "workspace:*"
},
"devDependencies": {
"@swc/core": "^1.4.1",
"@types/jest": "^28.1.8",
"@types/node": "^16.18.23",
"bip39": "3.0.4",
"eslint": "^8.37.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^28.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"clean": "rm -rf .parcel-cache && pnpm -r run clean",
"build": "pnpm --stream -r run build",
"codegen": "ts-node --swc gen.ts",
"test": "jest -i --config ./jest-config.json --forceExit",
"lint": "eslint . --ext ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"audit": "npm audit --omit=dev",
"update-schemas": "pnpm --stream -r run update-schemas",
"version": "pnpm --stream -r exec npm version",
"publish": "npm run build && pnpm -r publish --access public --no-git-checks"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"bracketSameLine": false,
"trailingComma": "none"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0",
"pnpm": ">=7.0.0"
},
"pnpm": {
"overrides": {
"semver@<7.5.2": ">=7.5.2",
"protobufjs@>=6.10.0 <7.2.4": ">=7.2.4",
"@babel/traverse": ">=7.23.2",
"browserify-sign": ">=4.2.2",
"axios": ">=1.6.0",
"word-wrap": ">=1.2.4",
"braces@<3.0.3": ">=3.0.3",
"ws@<7.5.10": "^7.5.10",
"elliptic@>=4.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=2.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=5.2.1 <=6.5.6": ">=6.5.7",
"micromatch@<4.0.8": ">=4.0.8"
}
},
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}