-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 5.33 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 5.33 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@conet/dle-conformance",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run archive-a:test && npm run differential:test",
"corpus:write": "tsx implementations/archive-a/src/generate-corpus.ts --write",
"corpus:check": "tsx implementations/archive-a/src/generate-corpus.ts --check",
"boundary:check": "tsx evidence/scripts/check-dependency-boundaries.ts",
"evidence:verify": "tsx evidence/scripts/ci-evidence.ts verify",
"evidence:collect": "tsx evidence/scripts/ci-evidence.ts collect",
"evidence:verify-manifest": "tsx evidence/scripts/ci-evidence.ts verify-manifest",
"archive-a:build": "tsc -p tsconfig.json",
"archive-a:test": "tsx --test implementations/archive-a/test/**/*.test.ts",
"archive-a:conformance": "tsx --test implementations/archive-a/test/core.test.ts",
"archive-b:build": "npm --prefix implementations/archive-b run build",
"archive-b:test": "npm --prefix implementations/archive-b run test",
"archive-b:conformance": "npm --prefix implementations/archive-b run conformance",
"conformance": "npm run archive-a:conformance",
"differential:test": "tsx --test conformance/differential/**/*.test.ts",
"differential": "tsx conformance/differential/runner.ts",
"archive": "tsx runtime/src/archive/cli.ts",
"daemon": "tsx runtime/src/daemon/cli.ts",
"daemon:browser": "tsx runtime/src/daemon/serve-browser.ts",
"mock-auction-cli": "tsx runtime/src/daemon/mock-l1-auction-cli.ts",
"mock-auction-demo": "tsx runtime/src/daemon/mock-l1-auction-demo.ts",
"runtime:build": "tsc -p runtime/tsconfig.archive.json && tsc -p runtime/tsconfig.daemon.json && tsc -p runtime/tsconfig.fleet.json && tsc -p runtime/tsconfig.newchain-user.json && node -e \"import('node:fs').then(({writeFileSync,mkdirSync})=>{mkdirSync('runtime/dist/archive',{recursive:true});mkdirSync('runtime/dist/fleet',{recursive:true});mkdirSync('runtime/dist/newchain-user',{recursive:true});writeFileSync('runtime/dist/archive/package.json', JSON.stringify({type:'module',private:true,name:'@conet/dle-archive-runtime',dependencies:{ethers:'^6.15.0'}},null,2)+'\\n');writeFileSync('runtime/dist/fleet/package.json', JSON.stringify({type:'module',private:true,name:'@conet/dle-ondemand-fleet'},null,2)+'\\n');writeFileSync('runtime/dist/newchain-user/package.json', JSON.stringify({type:'module',private:true,name:'@conet/dle-newchain-user'},null,2)+'\\n')})\" && npm install --omit=dev --prefix runtime/dist/archive",
"runtime:test": "tsx --test runtime/test/**/*.test.ts",
"explorer:test": "tsx --test explorer/test/**/*.test.ts",
"explorer:dev": "npm --prefix explorer run dev",
"explorer:build": "npm --prefix explorer run build",
"lab:deploy-archive": "npm run runtime:build && npm --prefix pilot run lab:deploy-archive",
"lab:deploy-archive-keep": "npm run runtime:build && npm --prefix pilot run lab:deploy-archive-keep",
"lab:accept-archive": "npm --prefix pilot run lab:accept-archive",
"lab:accept-ondemand": "npm --prefix pilot run lab:accept-ondemand",
"lab:deploy-ondemand-http-clients": "npm run runtime:build && npm --prefix pilot run lab:deploy-ondemand-http-clients",
"lab:deploy-newchain-user": "npm run runtime:build && npm --prefix pilot run lab:deploy-newchain-user",
"lab:deploy-m6": "npm run runtime:build && npm --prefix pilot run lab:deploy-m6",
"lab:deploy-g1-keep": "npm run runtime:build && npm --prefix pilot run lab:deploy-g1-keep",
"lab:accept-m6": "npm --prefix pilot run lab:accept-m6",
"lab:wipe-sync-join": "npm run runtime:build && npm --prefix pilot run lab:wipe-sync-join",
"lab:accept-sync-join": "npm run runtime:build && npm --prefix pilot run lab:accept-sync-join",
"lab:smoke-cg-open": "npm --prefix pilot run lab:smoke-cg-open",
"lab:smoke-rejected-safety": "npm --prefix pilot run lab:smoke-rejected-safety",
"lab:probe-p11-joiner": "npm --prefix pilot run lab:probe-p11-joiner",
"lab:keep-p11-peers": "npm run runtime:build && npm --prefix pilot run lab:keep-p11-peers",
"lab:keep-remap-l2": "npm run runtime:build && npm --prefix pilot run lab:keep-remap-l2",
"lab:keep-remap-fd06": "npm run runtime:build && npm --prefix pilot run lab:keep-remap-fd06",
"lab:keep-refresh-fd06-peers": "npm run runtime:build && npm --prefix pilot run lab:keep-refresh-fd06-peers",
"lab:keep-freeze-inventory": "npm run runtime:build && npm --prefix pilot run lab:keep-freeze-inventory",
"lab:start-pilot-clock": "npm run runtime:build && npm --prefix pilot run lab:start-pilot-clock",
"lab:keep-p11-joiner": "npm run runtime:build && npm --prefix pilot run lab:keep-p11-joiner",
"lab:deploy-p11-joiner": "npm run runtime:build && npm --prefix pilot run lab:deploy-p11-joiner",
"lab:accept-p11-join": "npm --prefix pilot run lab:accept-p11-join",
"lab:p11-full-open-join": "npm run runtime:build && npm --prefix pilot run lab:p11-full-open-join",
"mock-auction-e2e": "tsx runtime/src/daemon/mock-l1-auction-e2e.ts",
"mock-auction-ci": "bash scripts/ci/run-mock-l1-auction-gate.sh",
"mock-auction-ci:hardhat": "bash scripts/ci/run-mock-l1-auction-gate.sh --with-hardhat"
},
"dependencies": {
"ethers": "^6.15.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"ajv": "^8.20.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}