-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.5 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
{
"name": "tip-protocol",
"version": "2.0.0",
"description": "TIP Protocol — Trust Identity Protocol. Open, federated, post-quantum identity verification, content provenance, and deterministic trust scoring.",
"private": true,
"author": "Dinesh Mendhe <chairman@theailab.org> (https://theailab.org)",
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://theailab.org",
"repository": {
"type": "git",
"url": "https://github.com/theailab/tip-protocol.git"
},
"bugs": {
"url": "https://github.com/theailab/tip-protocol/issues",
"email": "security@theailab.org"
},
"keywords": [
"identity",
"trust",
"provenance",
"post-quantum",
"DAG",
"federated",
"biometric",
"content-authentication",
"AI",
"protocol"
],
"workspaces": [
"node",
"sdk",
"cli",
"badge"
],
"scripts": {
"install:all": "npm install && cd python && pip install -r requirements.txt --break-system-packages",
"test": "npm run test:node && npm run test:python",
"test:node": "cd node && npm test",
"test:python": "cd python && python -m pytest tests/ -v",
"lint": "npm run lint:node",
"lint:node": "cd node && npx eslint src/ --ext .js",
"seed": "node --experimental-vm-modules scripts/seed.js",
"seed:fresh": "rm -rf data genesis-data/backups genesis-data/temp-users && rm -f genesis-data/*-keys.json genesis-data/genesis.json genesis-data/seed-output.json genesis-data/*.db genesis-data/*.db-* && node --experimental-vm-modules scripts/seed.js",
"seed:local": "node --experimental-vm-modules scripts/seed.js --local-cluster",
"seed:fresh:local": "rm -rf data genesis-data/backups genesis-data/temp-users node2-env node3-env && rm -f genesis-data/*-keys.json genesis-data/genesis.json genesis-data/seed-output.json genesis-data/*.db genesis-data/*.db-* && node --experimental-vm-modules scripts/seed.js --local-cluster",
"seed:python": "cd python && python -m scripts.seed",
"start": "node node/src/index.js",
"dev": "node --watch node/src/index.js"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"publisher": "The AI Lab Intelligence Unobscured, Inc.",
"contributors": [
{
"name": "Dinesh Mendhe",
"email": "chairman@theailab.org",
"role": "Inventor and Author"
},
{
"name": "The AI Lab Intelligence Unobscured, Inc.",
"email": "chairman@theailab.org",
"url": "https://theailab.org"
}
],
"dependencies": {
"@noble/post-quantum": "^0.5.4"
}
}