forked from brijeshb42/monaco-emacs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.42 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
{
"name": "monaco-emacs",
"version": "0.2.1",
"description": "Emacs keybindings for monaco-editor",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "webpack-dev-server --mode development --host=0.0.0.0 --port=8080",
"clean": "rm -rf lib dist local",
"typing": "dts-generator --name monaco-emacs --project ./ --out lib/monaco-emacs.d.ts",
"dist": "webpack --mode production && rm -rf dist/lib",
"build": "npm run clean && tsc && npm run dist",
"local": "mkdir -p local && cp -r lib dist package.json local",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "Brijesh Bittu <[email protected]> (http://bitwiser.in/)",
"license": "MIT",
"devDependencies": {
"@types/lodash.throttle": "^4.1.4",
"@types/node": "13.7.7",
"css-loader": "^1.0.0",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"monaco-editor": "0.20.0",
"monaco-editor-webpack-plugin": "^1.9.0",
"style-loader": "^0.22.1",
"ts-loader": "^6.0.2",
"typescript": "3.8.3",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"lodash.kebabcase": "^4.1.1",
"lodash.throttle": "^4.1.1"
},
"peerDependencies": {
"monaco-editor": "^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.3 || ^0.20.0"
}
}