-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) 路 1.69 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) 路 1.69 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
{
"name": "@e280/authlocal",
"version": "0.3.4",
"description": "user-sovereign auth",
"license": "MIT",
"main": "./x/lib/index.js",
"type": "module",
"sideEffects": false,
"files": [
"x",
"s"
],
"exports": {
".": "./x/lib/index.js",
"./core": "./x/lib/core/index.js",
"./protocol": "./x/lib/protocol/index.js",
"./ui": "./x/lib/ui/index.js"
},
"scripts": {
"link": "npm link ../strata ../sly ../shiny",
"build": "rm -rf x && mkdir x && npm run check -s",
"check": "tsc && scute -v",
"dev": "octo 'node --watch x/test.js' 'tsc -w' 'scute -vw' 'node --watch x/lib/core/examples.js' 'hottie x'",
"test": "node x/test.js",
"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +",
"examples": "node x/lib/examples.js"
},
"allowScripts": {
"esbuild@0.28.2": true
},
"dependencies": {
"@awasm/noble": "^0.1.4",
"@e280/kv": "0.2.0",
"@e280/renraku": "^0.6.0-6",
"@e280/shiny": "0.1.0-22",
"@e280/sly": "^0.4.6",
"@e280/strata": "^0.4.4",
"@e280/stz": "^0.3.10",
"@noble/curves": "^2.4.0",
"lit": "^3.3.3"
},
"devDependencies": {
"@e280/hottie": "^0.1.5",
"@e280/octo": "^0.1.5",
"@e280/science": "^0.1.12",
"@e280/scute": "^0.5.2",
"http-server": "^14.1.1",
"typescript": "^7.0.2"
},
"author": "Chase Moskal <chasemoskal@gmail.com>",
"homepage": "https://github.com/e280/authlocal#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/e280/authlocal.git"
},
"bugs": {
"url": "https://github.com/e280/authlocal/issues"
},
"keywords": [
"auth",
"authentication",
"zero-cost",
"pseudonymous",
"user-sovereign",
"clientside",
"federated",
"decentralized",
"protocol",
"free",
"open-source"
]
}