-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.91 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
{
"name": "openzeppelin-compact",
"description": "Secure Smart Contract library written in Compact for Midnight",
"private": true,
"packageManager": "yarn@4.12.0",
"workspaces": [
"contracts/",
"packages/*"
],
"scripts": {
"compile": "turbo run compile --filter=@openzeppelin/compact-contracts --log-prefix=none",
"compile:access": "turbo run compile:access --filter=@openzeppelin/compact-contracts --log-prefix=none",
"compile:archive": "turbo run compile:archive --filter=@openzeppelin/compact-contracts --log-prefix=none",
"compile:crypto": "turbo run compile:crypto --filter=@openzeppelin/compact-contracts --log-prefix=none",
"compile:multisig": "turbo run compile:multisig --filter=@openzeppelin/compact-contracts --log-prefix=none",
"compile:security": "turbo run compile:security --filter=@openzeppelin/compact-contracts --log-prefix=none",
"compile:token": "turbo run compile:token --filter=@openzeppelin/compact-contracts --log-prefix=none",
"compile:utils": "turbo run compile:utils --filter=@openzeppelin/compact-contracts --log-prefix=none",
"compile:integration": "turbo run compile:integration --filter=@openzeppelin/compact-contracts --log-prefix=none",
"build": "turbo run build --log-prefix=none",
"test": "SKIP_ZK=true turbo run test --filter=@openzeppelin/compact-contracts --env-mode=loose --log-prefix=none",
"test:coverage": "SKIP_ZK=true turbo run test:coverage --filter=@openzeppelin/compact-contracts --env-mode=loose --log-prefix=none",
"test:live": "node --disable-warning=MODULE_TYPELESS_PACKAGE_JSON scripts/test-live.ts",
"test:integration": "SKIP_ZK=true turbo run test:integration --filter=@openzeppelin/compact-contracts --env-mode=loose --log-prefix=none",
"test:harness": "turbo run test:harness --filter=@openzeppelin/compact-contracts --env-mode=loose --log-prefix=none",
"test:harness:live": "turbo run test:harness:live --filter=@openzeppelin/compact-contracts --env-mode=loose --log-prefix=none",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"lint:ci": "biome ci . --no-errors-on-unmatched",
"env:up": "make env-up",
"env:down": "make env-down",
"env:status": "make env-status",
"env:logs": "make env-logs",
"env:logs:clean": "make env-logs-clean",
"types": "turbo run types",
"clean": "turbo run clean"
},
"resolutions": {
"tar": "~7.5.11",
"glob": "~10.5.0",
"vite": "8.0.16",
"minimatch": "9.0.6",
"postcss": "8.5.10",
"picomatch": "4.0.4",
"ip-address": "10.1.1",
"@midnight-ntwrk/wallet-sdk-facade": "4.0.1"
},
"dependencies": {
"@midnight-ntwrk/compact-runtime": "0.16.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@midnight-ntwrk/ledger-v8": "8.1.0",
"@midnight-ntwrk/zswap": "^4.0.0",
"@types/node": "26.1.1",
"ts-node": "^10.9.2",
"turbo": "^2.10.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}