This repository was archived by the owner on Dec 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "symmetry-core",
"version": "1.0.49",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "rjmacarthy",
"license": "ISC",
"keywords": [
"symmetry",
"twinny",
"p2p",
"ai",
"decentralised",
"network"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest",
"build": "tsc",
"package": "pkg ./dist/symmetry.js",
"start": "node dist/symmetry.js",
"dev": "ts-node src/symmetry.ts",
"debug": "ts-node --inspect src/symmetry.ts",
"lint": "eslint . --ext .ts,.js --fix",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"fluency.js": "^1.0.1",
"hypercore-crypto": "^3.4.2",
"hyperdht": "^6.15.4",
"hyperswarm": "^4.8.0",
"js-yaml": "^4.1.0",
"sqlite3": "^5.1.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.10",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}