-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.18 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.18 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@holo-host/joining-service",
"version": "0.1.0",
"description": "Reference joining service for Holochain hApps on Holo",
"license": "CAL-1.0",
"type": "module",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Holo-Host/joining-service"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"bin": {
"joining-cli": "dist/cli/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"source": "./src/client/index.ts",
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
},
"./ui": {
"source": "./src/ui/index.ts",
"import": "./dist/ui/index.js",
"types": "./dist/ui/index.d.ts"
},
"./ui/shoelace": {
"source": "./src/ui/shoelace/index.ts",
"import": "./dist/ui/shoelace/index.js",
"types": "./dist/ui/shoelace/index.d.ts"
},
"./test": {
"source": "./test/e2e/helpers.ts",
"import": "./dist/test/e2e/helpers.js",
"types": "./dist/test/e2e/helpers.d.ts"
}
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:ui": "vitest run test/ui/",
"test:watch": "vitest",
"gen-signing-key": "NODE_OPTIONS=--preserve-symlinks tsx scripts/gen-signing-key.ts"
},
"dependencies": {
"@holo-host/lair": "^0.1.0",
"@hono/node-server": "^1.14.0",
"@msgpack/msgpack": "^3.0.0",
"@noble/ed25519": "^2.2.0",
"@scure/bip39": "^2.0.1",
"better-sqlite3": "^11.8.0",
"hono": "^4.7.0",
"libsodium-wrappers": "^0.8.2"
},
"devDependencies": {
"@shoelace-style/shoelace": "^2.11.0",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"happy-dom": "^20.8.3",
"lit": "^3.3.2",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"@shoelace-style/shoelace": "^2.11.0",
"lit": "^3.3.2"
},
"peerDependenciesMeta": {
"@shoelace-style/shoelace": {
"optional": true
}
}
}