-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 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
{
"name": "@e280/authlocal",
"version": "0.2.0-39",
"description": "User-sovereign login system for everybody",
"license": "MIT",
"main": "./x/exports.web.js",
"type": "module",
"files": [
"x",
"s"
],
"exports": {
".": "./x/exports.web.js",
"./core": "./x/exports.core.js",
"./mock": "./x/exports.mock.js"
},
"dependencies": {
"@e280/kv": "^0.1.0",
"@e280/renraku": "^0.5.1",
"@e280/science": "^0.1.4",
"@e280/sly": "^0.2.2",
"@e280/strata": "^0.2.4",
"@e280/stz": "^0.2.14",
"@noble/ed25519": "^3.0.0",
"lit": "^3.3.1"
},
"devDependencies": {
"@e280/scute": "^0.1.2",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"scripts": {
"build": "rm -rf x && mkdir x && run-s _tsc _ln _scute",
"test": "node x/tests.test.js",
"start": "octo 'scute -vw' 'node --watch x/tests.test.js' 'tsc -w' 'http-server x'",
"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +",
"devlinks": "run-s _dl:slate _dl:renraku",
"_clean": "rm -rf x && mkdir x",
"_tsc": "tsc",
"_scute": "scute -v",
"_ln": "run-s _ln:s _ln:assets",
"_ln:s": "ln -s \"$(realpath s)\" x/s",
"_ln:assets": "ln -s \"$(realpath assets)\" x/assets",
"_dl:slate": "rm -rf node_modules/@benev/slate && ln -s \"$(realpath ../../@benev/slate)\" node_modules/@benev/slate",
"_dl:turtle": "rm -rf node_modules/@benev/turtle && ln -s \"$(realpath ../../@benev/turtle)\" node_modules/@benev/turtle",
"_dl:renraku": "rm -rf node_modules/renraku && ln -s \"$(realpath ../../chase-moskal/renraku)\" node_modules/renraku"
},
"keywords": [
"auth",
"authentication",
"zero-cost",
"privacy-focused",
"user-sovereign",
"clientside",
"federated",
"decentralized",
"protocol",
"free",
"open-source"
],
"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"
}
}