-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 983 Bytes
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
{
"name": "@drumee/server-runtime",
"version": "0.1.0-alpha.1",
"private": false,
"description": "Drumee minimal backend runtime. Pre-release API extracted from the validated Phase 4.5 minimal-kernel boundary.",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/drumee/server-runtime.git"
},
"publishConfig": {
"access": "public",
"tag": "next",
"registry": "https://registry.npmjs.org/"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"files": [
"acl/",
"lib/",
"schemas/",
"service/",
"PROVENANCE.md",
"README.md"
],
"type": "commonjs",
"engines": {
"node": ">=18"
},
"dependencies": {
"websocket": "1.0.35"
},
"scripts": {
"test": "node --test test/artifact.test.js test/auth-domain.test.js test/schema-manifest.test.js test/server-runtime.test.js test/websocket-push.test.js"
}
}