-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.65 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
{
"name": "@stateset/blind-auction-protocol",
"version": "3.1.1",
"description": "Zero-knowledge procurement infrastructure for autonomous commerce. Vickrey auctions with STARK proofs, x402 USDC settlement, and agent-native design.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/stateset/blind-auction-protocol.git"
},
"homepage": "https://github.com/stateset/blind-auction-protocol",
"keywords": ["auction", "zero-knowledge", "stark", "procurement", "vickrey", "agents", "usdc", "x402", "stateset"],
"author": "StateSet Inc.",
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite",
"server": "tsx server.ts",
"build": "tsc -b && ./scripts/with-modern-node.sh ./node_modules/vite/bin/vite.js build",
"lint": "./scripts/with-modern-node.sh scripts/run-eslint.mjs .",
"typecheck": "tsc -b",
"test": "./scripts/with-modern-node.sh ./node_modules/tsx/dist/cli.mjs tests/security.test.ts",
"test:v2": "./scripts/with-modern-node.sh ./node_modules/tsx/dist/cli.mjs tests/v2.test.ts",
"preview": "vite preview"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsx": "^4.21.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^8.0.0"
}
}