-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 818 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 818 Bytes
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
{
"name": "occproof",
"version": "1.2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test:core": "tsc && node --test dist/__tests__/canonical.test.js dist/__tests__/constructor.test.js dist/__tests__/verifier.test.js",
"test": "npm run test:core && npm test --prefix packages/mcp-proxy && npm test --prefix packages/policy-sdk"
},
"dependencies": {
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.4.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0"
}
}