-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 874 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 874 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
{
"name": "@prodaric/layout",
"version": "0.0.1",
"description": "Prodaric Framework — Lumino layout & docking",
"repository": {
"type": "git",
"url": "git+https://github.com/prodaric/layout.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"lib",
"README.md"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"test": "jest"
},
"dependencies": {
"@lumino/algorithm": "^2.0.4",
"@lumino/coreutils": "^2.2.2",
"@lumino/disposable": "^2.1.5",
"@lumino/signaling": "^2.1.5",
"@lumino/widgets": "^2.7.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.4.6",
"typescript": "~5.4.0"
}
}