-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
{
"name": "chipnet",
"version": "0.1.7",
"description": "A meta-protocol library for anonymous distributed search",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./unidirectional": "./dist/unidirectional/index.js",
"./transaction": "./dist/transaction/index.js"
},
"scripts": {
"clean": "rm -rf dist/",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest .",
"lint": "eslint ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gotchoices/ChipNet.git"
},
"homepage": "https://github.com/gotchoices/ChipNet",
"bugs": {
"url": "https://github.com/gotchoices/ChipNet/issues"
},
"keywords": [
"graph",
"discovery",
"search",
"anonymous",
"mychips",
"library"
],
"author": "Nathan Allan",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.12",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"chipcode": "^0.1.10",
"chipcrypt": "^0.1.6",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"chipcryptbase": "^0.1.15",
"sparstogram": "^0.8.2"
}
}