forked from michmech/xonomy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "@elexis-eu/xonomy",
"version": "1.3.1",
"description": "A typescript port of the Xonomy XML editor",
"main": "./dist/xonomy.umd.js",
"types": "./dist/src/xonomy.d.ts",
"type": "commonjs",
"files": [
"dist"
],
"exports": {
"import": "./dist/xonomy.esm.js",
"require": "./dist/xonomy.umd.js"
},
"scripts": {
"start": "webpack --watch --config webpack.config.dev.js --mode development",
"build": "webpack --config webpack.config.prod.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kcmertens/xonomy.git"
},
"keywords": [
"xonomy",
"xml",
"editor",
"web",
"javascript",
"typescript",
"configurable"
],
"author": "KCMertens",
"license": "MIT",
"bugs": {
"url": "https://github.com/kcmertens/xonomy/issues"
},
"homepage": "https://github.com/kcmertens/xonomy#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/common-tags": "^1.8.1",
"@types/jquery": "^3.5.14",
"css-loader": "^6.3.0",
"mini-css-extract-plugin": "^2.3.0",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"common-tags": "^1.8.2"
}
}