forked from hpcc-systems/Visualization
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 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
52
53
54
55
56
57
58
{
"name": "@hpcc-js/wc-editor",
"version": "0.5.1",
"description": "hpcc-systems web component editor library",
"sideEffects": false,
"type": "module",
"exports": {
"script": "./dist/index.umd.min.js",
"default": "./dist/esm/index.js"
},
"main": "dist/index.esm.js",
"module": "dist/esm/index.js",
"jsdelivr": "dist/index.umd.min.js",
"unpkg": "dist/index.umd.min.js",
"types": "types/index.d.ts",
"files": [
"dist/*",
"src/*",
"types/*"
],
"scripts": {
"clean": "rimraf --glob build dist lib* types temp tmp *.tsbuildinfo",
"compile-es6": "tsc -p ./tsconfig.json",
"compile-es6-watch": "npm run compile-es6 -- -w",
"bundle": "rollup -c ../rollup.config.js --folder=editor",
"bundle-watch": "npm run bundle -- -w",
"build": "npm run compile-es6 && npm run bundle",
"lint": "eslint ./src",
"update": "npx --yes npm-check-updates -u -t minor"
},
"dependencies": {
"@codemirror/autocomplete": "6.20.1",
"@codemirror/commands": "6.10.3",
"@codemirror/lang-html": "6.4.11",
"@codemirror/lang-javascript": "6.2.5",
"@codemirror/lang-json": "6.0.2",
"@codemirror/lint": "6.9.5",
"@codemirror/search": "6.6.0",
"@codemirror/state": "6.6.0",
"@codemirror/theme-one-dark": "6.1.3",
"@codemirror/view": "6.40.0",
"@hpcc-js/wc-core": "^0.5.1",
"tslib": "2.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": {
"name": "hpcc-systems",
"url": "https://hpccsystems.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization#readme"
}