-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 996 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 996 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
{
"name": "@prodaric/node-canvas",
"version": "0.0.1",
"description": "Prodaric Framework — Rete.js v2 canvas widget",
"repository": {
"type": "git",
"url": "git+https://github.com/prodaric/node-canvas.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": "echo \"No tests yet\""
},
"dependencies": {
"@lumino/coreutils": "^2.2.0",
"@lumino/widgets": "^2.6.0",
"rete": "^2.0.0",
"rete-area-plugin": "^2.0.0",
"rete-connection-plugin": "^2.0.0",
"rete-react-plugin": "^2.0.0",
"rete-render-utils": "^2.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"styled-components": "^6.1.0"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"rimraf": "^5.0.0",
"typescript": "~5.4.0"
}
}