-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
{
"name": "monaco-emacs",
"version": "0.3.0",
"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.kebabcase": "4.1.6",
"@types/lodash.throttle": "4.1.6",
"@types/node": "17.0.18",
"css-loader": "6.6.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"monaco-editor": "0.32.1",
"monaco-editor-webpack-plugin": "7.0.1",
"style-loader": "3.3.1",
"ts-loader": "9.2.6",
"typescript": "4.5.5",
"webpack": "5.69.1",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4"
},
"dependencies": {
"lodash.kebabcase": "^4.1.1",
"lodash.throttle": "^4.1.1"
},
"peerDependencies": {
"monaco-editor": ">=0.31"
}
}