-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.13 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@reactodia/workspace",
"version": "0.27.0-next.1",
"description": "Reactodia Workspace -- library for visual interaction with graphs in a form of a diagram.",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/reactodia/reactodia-workspace.git"
},
"keywords": [
"owl",
"graph",
"rdf",
"diagram",
"sparql"
],
"author": {
"name": "Alexey Morozov",
"url": "https://github.com/AlexeyMz"
},
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/reactodia/reactodia-workspace/issues"
},
"homepage": "https://github.com/reactodia/reactodia-workspace",
"scripts": {
"build": "webpack",
"build-examples": "webpack --config webpack.examples.config.js",
"serve": "node ./webpackServe.js",
"test": "vitest",
"test-build": "npm run build && npm run build-examples",
"typings": "tsc --project tsconfig.base.json --declaration --emitDeclarationOnly --outDir dist/typings",
"lint": "eslint --ext .jx,.jsx,.ts,.tsx src/ examples/",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist"
},
"dependencies": {
"classnames": "^2.3.2",
"d3-color": "^3.1.0",
"file-saver": "^2.0.5",
"n3": "^1.17.2",
"webcola": "~3.3.8"
},
"peerDependencies": {
"react": "^17.0.2 || ^18",
"react-dom": "^17.0.2 || ^18"
},
"devDependencies": {
"@rdfjs/types": "^1.1.0",
"@types/d3-color": "^3.1.2",
"@types/file-saver": "^2.0.6",
"@types/n3": "^1.16.3",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/use-sync-external-store": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitest/browser": "^2.1.3",
"@vscode/codicons": "^0.0.35",
"css-loader": "^6.10.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"express": "^4.18.3",
"html-webpack-plugin": "^5.6.0",
"http-proxy-middleware": "^2.0.6",
"playwright": "^1.48.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^5.0.5",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"use-sync-external-store": "^1.2.0",
"vitest": "^2.1.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.0.0"
},
"main": "dist/workspace.js",
"typings": "dist/typings/workspace.d.ts",
"exports": {
".": {
"types": "./dist/typings/workspace.d.ts",
"import": "./dist/workspace.js"
},
"./layout.worker": {
"types": "./dist/typings/layout.worker.d.ts",
"default": "./dist/layout.worker.js"
},
"./worker-protocol": {
"types": "./dist/typings/worker-protocol.d.ts",
"import": "./dist/worker-protocol.js"
}
},
"files": [
"dist/layout.worker.js",
"dist/worker-protocol.js",
"dist/workspace.js",
"dist/typings",
"images",
"src",
"styles",
"typings",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md",
"THIRDPARTY.md",
"tsconfig.base.json",
"tsconfig.json",
"webpack.config.js"
]
}