-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.88 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
72
73
74
75
76
{
"name": "@peac/protocol",
"version": "0.16.1",
"description": "PEAC protocol implementation - receipt issuance and verification",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./verify-local": {
"types": "./dist/verify-local.d.ts",
"import": "./dist/verify-local.mjs",
"require": "./dist/verify-local.cjs"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peacprotocol/peac.git",
"directory": "packages/protocol"
},
"author": "PEAC Protocol Contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/peacprotocol/peac/issues"
},
"homepage": "https://github.com/peacprotocol/peac#readme",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "pnpm run build:js && pnpm run build:types",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench --run",
"clean": "rm -rf dist",
"build:js": "tsup",
"build:types": "rm -f dist/.tsbuildinfo && tsc && rm -f dist/.tsbuildinfo"
},
"dependencies": {
"@peac/kernel": "workspace:*",
"@peac/schema": "workspace:*",
"@peac/crypto": "workspace:*",
"uuidv7": "^0.6.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.19.11",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"typescript": "^5.3.3",
"vitest": "^4.1.0",
"tsup": "^8.0.0"
},
"keywords": [
"peac",
"peacprotocol",
"interaction-records",
"signed-records",
"receipts",
"originary",
"verification",
"issuance",
"receipt-verification",
"policy-binding"
]
}