-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"name": "@waltertamboer/dockspace-js",
"license": "MIT",
"version": "0.0.16",
"homepage": "https://github.com/waltertamboer/dockspace-js",
"main": "dist/cjs/dockspace.js",
"module": "dist/es/dockspace.js",
"types": "dist/types/index.d.ts",
"author": {
"name": "Walter Tamboer",
"url": "https://waltertamboer.nl"
},
"keywords": [
"dockspace",
"docking",
"splitter",
"splitters",
"split",
"pane",
"panels"
],
"bugs": {
"url": "https://github.com/waltertamboer/dockspace-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/waltertamboer/dockspace-js.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.24",
"es-dev-server": "^2.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"scripts": {
"build": "yarn run rollup -c rollup.config.mjs && yarn run tsc --declaration --emitDeclarationOnly --outDir dist/types/",
"clean": "rimraf ./dist",
"serve": "es-dev-server --root-dir ./ --watch",
"watch": "yarn run rollup -c rollup.config.mjs --watch"
},
"files": [
"dist/",
"LICENSE"
]
}