-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.08 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.08 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
{
"name": "dominion-protocol",
"version": "1.0.0",
"description": "Epoch-based encrypted access control protocol for Nostr",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./nostr": {
"import": "./dist/nostr/index.js",
"types": "./dist/nostr/index.d.ts"
}
},
"files": [
"dist/",
"LICENSE",
"llms.txt"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"prepare": "npm run build"
},
"keywords": [
"nostr",
"nostr-protocol",
"encryption",
"access-control",
"epoch",
"aes-256-gcm",
"hkdf",
"shamir",
"secret-sharing",
"tiered-access",
"content-keys",
"key-rotation",
"vault",
"nip-44",
"private-content",
"dominion"
],
"sideEffects": false,
"author": "ForgeSworn (https://github.com/forgesworn)",
"contributors": [
"TheCryptoDonkey (https://github.com/TheCryptoDonkey)",
"decented (https://github.com/decented)"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/forgesworn/dominion.git"
},
"homepage": "https://github.com/forgesworn/dominion",
"bugs": {
"url": "https://github.com/forgesworn/dominion/issues"
},
"dependencies": {
"@forgesworn/shamir-core": "^1.0.0",
"@noble/ciphers": "^2.1.0",
"@noble/hashes": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^25.3.3",
"semantic-release": "^25.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
},
"funding": {
"type": "lightning",
"url": "lightning:thedonkey@strike.me"
}
}