-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "openzeppelin-compact",
"description": "Secure Smart Contract library written in Compact for Midnight",
"private": true,
"packageManager": "yarn@4.12.0",
"workspaces": [
"contracts/",
"packages/*"
],
"scripts": {
"compact": "turbo run compact --filter=@openzeppelin/compact-contracts --log-prefix=none",
"build": "turbo run build --log-prefix=none",
"test": "turbo run test --filter=@openzeppelin/compact-contracts --log-prefix=none",
"fmt-and-lint": "biome check . --changed",
"fmt-and-lint:fix": "biome check . --changed --write",
"fmt-and-lint:ci": "biome ci . --changed --no-errors-on-unmatched",
"types": "turbo run types",
"clean": "turbo run clean"
},
"resolutions": {
"tar": "~7.5.7",
"glob": "~10.5.0"
},
"dependencies": {
"@midnight-ntwrk/compact-runtime": "0.14.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@midnight-ntwrk/ledger-v7": "7.0.0",
"@midnight-ntwrk/zswap": "^4.0.0",
"@types/node": "24.10.0",
"ts-node": "^10.9.2",
"turbo": "^2.9.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}