-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "awg-editor",
"version": "1.0.0",
"license": "MIT",
"author": "国仪量子(合肥)技术有限公司(zlw@ciqtek.com)",
"private": false,
"main": "dist/AwgEditor.umd.js",
"types": "types/types.d.ts",
"module": "dist/AwgEditor.umd.js",
"type": "module",
"exports": {
".": {
"module": "./dist/AwgEditor.umd.js",
"require": "./dist/AwgEditor.umd.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c rollup.config.js",
"doc": "typedoc --out docs src/AwgEditor.ts"
},
"bugs": {
"url": "https://github.com/ciqtek/awg-editor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ciqtek/awg-editor.git"
},
"keywords": [
"code",
"editor",
"monaco-editor"
],
"homepage": "https://github.com/ciqtek/awg-editor#readme",
"files": [
"src",
"types",
"dist"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^5.3.0",
"@types/webpack-env": "^1.16.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.6",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.4",
"webpack-dev": "^1.1.1"
},
"dependencies": {
"monaco-editor": "^0.29.1"
}
}