-
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) · 1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1 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": "@quantumpipes/capsule",
"version": "0.0.1",
"description": "Capsule Protocol Specification (CPS) — TypeScript reference implementation",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"engines": {
"node": ">=20.19.0"
},
"repository": {
"type": "git",
"url": "https://github.com/quantumpipes/capsule.git",
"directory": "reference/typescript"
},
"keywords": [
"capsule",
"cps",
"audit-trail",
"cryptography",
"ed25519",
"sha3",
"ai",
"tamper-evident"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"conformance": "vitest run __tests__/conformance.test.ts",
"lint": "tsc --noEmit"
},
"dependencies": {
"@noble/hashes": "^2.0.1",
"@noble/ed25519": "^3.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.0",
"typescript": "^6.0.2",
"vitest": "^4.0.0"
}
}