-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 2.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
{
"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",
"runtime:build": "tsc -p runtime/tsconfig.archive.json && tsc -p runtime/tsconfig.daemon.json && node -e \"import('node:fs').then(({writeFileSync})=>{writeFileSync('runtime/dist/archive/package.json', JSON.stringify({type:'module',private:true,name:'@conet/dle-archive-runtime'},null,2)+'\\n')})\"",
"runtime:test": "tsx --test runtime/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:accept-archive": "npm --prefix pilot run lab:accept-archive",
"lab:accept-ondemand": "npm --prefix pilot run lab:accept-ondemand"
},
"dependencies": {
"ethers": "^6.15.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"ajv": "^8.20.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}