-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 2.61 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
{
"version": "0.2.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"rollup",
"plugin",
"monaco-editor"
],
"files": [
"plugin",
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/chengcyber/rollup-plugin-monaco-editor"
},
"scripts": {
"start": "tsdx watch",
"start:example": "http-server -c-1 example",
"generate": "(cd build && ts-node ./generate_plugin.ts)",
"build": "tsdx build && node ./build/fix_dist_index.js",
"build:example": "(cd example && rimraf dist && rollup -c rollup.config.js)",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "npm run build",
"pub": "changeset publish",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "rollup-plugin-monaco-editor",
"author": "Cheng Liu<[email protected]>",
"module": "dist/rollup-plugin-monaco-editor.esm.js",
"size-limit": [
{
"path": "dist/rollup-plugin-monaco-editor.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/rollup-plugin-monaco-editor.esm.js",
"limit": "10 KB"
}
],
"peerDependencies": {
"monaco-editor": "^0.21.2",
"rollup": "^2.33.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.17.0",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@size-limit/preset-small-lib": "^4.7.0",
"@types/es-module-lexer": "^0.3.0",
"@types/fs-extra": "^9.0.11",
"@types/glob": "^7.1.4",
"@types/lodash": "^4.14.170",
"@types/node": "^18.0.0",
"@types/semver": "^7.3.6",
"execa": "^5.1.1",
"fs-extra": "^9.1.0",
"glob": "^7.1.7",
"http-server": "^0.12.3",
"husky": "^4.3.0",
"monaco-editor": "0.34.0",
"postcss": "^8.4.14",
"postcss-url": "^10.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^4.7.0",
"slash": "^3.0.0",
"tempy": "^1.0.1",
"ts-node": "^9.1.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.0.5"
},
"dependencies": {
"es-module-lexer": "^0.3.26",
"magic-string": "^0.25.7",
"recast": "^0.20.4",
"regenerator-runtime": "^0.13.9",
"semver": "^7.3.5"
}
}