-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.28 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.28 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@p31/node-zero",
"version": "0.2.0-alpha.0",
"description": "Node Zero Protocol — identity, state, bond, and vault primitives for assistive mesh networks. Zero runtime dependencies. WebCrypto P-256 ECDSA/ECDH, AES-256-GCM, HKDF. Runs in browser and Node.js.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./forwarder": {
"types": "./dist/forwarder.d.ts",
"import": "./dist/forwarder.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js"
},
"./interfaces": {
"types": "./dist/interfaces/index.d.ts",
"import": "./dist/interfaces/index.js"
},
"./primitives": {
"types": "./dist/primitives/index.d.ts",
"import": "./dist/primitives/index.js"
},
"./codec": {
"types": "./dist/codec/index.d.ts",
"import": "./dist/codec/index.js"
},
"./backends": {
"types": "./dist/backends/index.d.ts",
"import": "./dist/backends/index.js"
},
"./transports": {
"types": "./dist/transports/index.d.ts",
"import": "./dist/transports/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"keywords": [
"p31",
"node-zero",
"assistive-technology",
"neurodivergent",
"mesh-network",
"lora",
"esp32",
"cryptography",
"ecdsa",
"ecdh",
"aes-256-gcm",
"hkdf",
"webcrypto",
"tetrahedron",
"k4-topology"
],
"author": "P31 Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/p31labs/node-zero.git"
},
"homepage": "https://github.com/p31labs/node-zero#readme",
"bugs": {
"url": "https://github.com/p31labs/node-zero/issues"
},
"sideEffects": false,
"devDependencies": {
"@types/node": "^25.3.0",
"typescript": "^5.7.0",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=20.0.0"
}
}