-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
58 lines (58 loc) · 1.98 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": "monaco-vue",
"private": true,
"description": "Monaco Editor for Vue - use the monaco-editor in any Vue 2&3 application without needing to use webpack (or rollup/vite) configuration files / plugins",
"scripts": {
"build": "lerna run build --scope @guolao/vue-monaco-editor && node ./scripts/syncReadme.mjs && git add ./packages/editor/README.md",
"build:gh-pages": "lerna run build:gh-pages --scope site",
"start:playground": "lerna run start --scope playground",
"build:playground": "lerna run build --scope playground",
"start:site": "lerna run start --scope site",
"build:site": "lerna run build --scope site",
"test:vue-2.7.14": "lerna run start --scope vue-test-2.7.14",
"test:vue-2.6.14": "lerna run start --scope vue-test-2.6.14",
"eslint-fix": "eslint --fix ./packages/editor/src --ext .vue,.js,.ts,.tsx",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"publish:git": "lerna version && lerna publish from-git"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imguolao/monaco-vue.git"
},
"author": {
"name": "guolao",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/imguolao/monaco-vue/issues"
},
"homepage": "https://imguolao.github.io/monaco-vue",
"license": "MIT",
"engines": {
"node": ">18.0.0"
},
"lint-staged": {
"packages/**/*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lerna": "^6.5.1",
"lint-staged": "^13.1.2",
"only-allow": "^1.1.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}