-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 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
{
"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/node": "^20.0.0",
"@scure/bip39": "1.6.0",
"eslint": "^8.37.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^3.1.1"
},
"scripts": {
"build": "pnpm --stream -r run build",
"clean": "pnpm -r run clean",
"clean:all": "pnpm -r run --if-present clean:all && rm -rf node_modules",
"codegen": "ts-node --swc gen.ts",
"test": "vitest run",
"check": "pnpm -r run --if-present check",
"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": ">=20.0.0",
"npm": ">=7.0.0",
"pnpm": ">=7.0.0"
},
"pnpm": {
"overrides": {
"lodash@<4.18.0": ">=4.18.0",
"nanoid@<3.3.8": "=3.3.8",
"serialize-javascript@<7.0.5": "=7.0.5",
"js-yaml@>=4.0.0 <4.1.1": "=4.1.1"
}
},
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}