forked from Pranomvignesh/constrained-editor-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.08 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
{
"name": "constrained-editor-plugin",
"version": "1.3.0",
"description": "A Plugin which adds restrictions to the model of monaco-editor, so that only some parts of the code are editable and rest will become read-only",
"directories": {
"doc": "docs"
},
"type": "module",
"exports": {
"./deepClone": "./dist/esm/utils/deepClone.js",
"./enums": "./dist/esm/utils/enums.js",
".": "./dist/esm/constrainedEditor.js"
},
"scripts": {
"test": "./node_modules/.bin/live-server --entry-file=./test/index.html --port=6060 --open=/?random=false",
"commit": "git-cz",
"release": "standard-version",
"amend": "git commit . --amend -m \"$(git log -1 --pretty=%B)\"",
"start": "cd docs && npm run start",
"dev": "MODE=production webpack --mode=production -c './src/webpack.config.cjs' && MODE=development webpack --mode=development --watch -c './src/webpack.config.cjs'",
"prepack": "npm run bundle",
"bundle": "MODE=production webpack --mode=production -c './src/webpack.config.cjs' && MODE=development webpack --mode=development -c './src/webpack.config.cjs'",
"build": "MODE=production webpack --mode=production -c './src/webpack.config.cjs' && cd docs && yarn install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pranomvignesh/constrained-editor-plugin.git"
},
"keywords": [
"monaco-editor",
"restrictions-in-editor",
"edit-area-restriction"
],
"author": "VIGNESH. P <[email protected]>",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/Pranomvignesh/constrained-editor-plugin/issues"
},
"homepage": "https://github.com/Pranomvignesh/constrained-editor-plugin#readme",
"devDependencies": {
"commitizen": "4.3.0",
"copy-webpack-plugin": "7.0.0",
"cz-conventional-changelog": "3.3.0",
"jasmine": "3.7.0",
"live-server": "1.2.1",
"monaco-editor": "0.24.0",
"standard-version": "^9.3.1",
"webpack": "5.76.0",
"webpack-cli": "4.7.0"
}
}