-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.21 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
{
"name": "alibi",
"version": "0.1.0",
"private": true,
"description": "ALIBI — Proof-of-Refusal. Prove your agent refused an order, without revealing the order, the leash, or where the leash sits. A privacy-first dApp on Midnight.",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"contract",
"api",
"ui"
],
"engines": {
"node": ">=24.11.1"
},
"scripts": {
"compact": "npm run compact --workspace @alibi/contract",
"compact:version": "npm run compact:version --workspace @alibi/contract",
"build": "npm run build --workspace @alibi/contract && npm run build --workspace @alibi/api && npm run build --workspace @alibi/ui",
"typecheck": "npm run typecheck --workspaces --if-present",
"dev": "npm run dev --workspace @alibi/ui",
"preview": "npm run preview --workspace @alibi/ui",
"test": "npm run test:contract && npm run test:ui && npm run verify:fixtures",
"test:contract": "npm run test --workspace @alibi/contract",
"test:negative": "npm run test:negative --workspace @alibi/contract",
"test:ui": "npm run test --workspace @alibi/ui",
"test:fixtures": "npm run test:fixtures --workspace @alibi/ui",
"test:watch": "npm run test:watch --workspace @alibi/contract",
"verify": "npm run verify:boundary && npm run verify:domain-sep && npm run verify:fixtures",
"verify:fixtures": "node ui/src/lib/mock/tools/verify-fixtures.mjs",
"verify:boundary": "bash tools/verify-boundary.sh",
"verify:domain-sep": "node tools/verify-domain-sep.mjs",
"verify:ledger": "node tools/verify-ledger.mjs",
"demo:attack": "node tools/demo-attack.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"proof-server:up": "docker compose up -d proof-server",
"proof-server:down": "docker compose down",
"proof-server:logs": "docker compose logs -f proof-server",
"clean": "rm -rf ui/dist api/dist contract/dist contract/src/managed **/*.tsbuildinfo"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.20.0",
"vitest": "^3.0.0"
}
}