-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1014 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
40
41
42
{
"name": "@drumee/ui-runtime",
"version": "0.1.0-alpha.1",
"private": false,
"description": "Drumee minimal frontend 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/ui-runtime.git"
},
"publishConfig": {
"access": "public",
"tag": "next",
"registry": "https://registry.npmjs.org/"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./browser": "./src/browser.js",
"./package.json": "./package.json"
},
"files": [
"src/",
"PROVENANCE.json",
"PROVENANCE.md",
"README.md"
],
"type": "commonjs",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test test/artifact.test.js test/ui-runtime.test.js"
},
"dependencies": {
"backbone": "1.6.1",
"backbone.marionette": "4.1.3",
"dompurify": "3.4.14",
"jquery": "3.7.1",
"lodash": "4.18.1"
}
}