This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
63 lines (63 loc) · 1.83 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
{
"name": "vue-run-sfc",
"version": "1.5.0",
"description": "Vue DEMO利器, 在线运行 & 编辑 Vue 单文件",
"private": false,
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "yarn build:lib && yarn build:docs",
"build:lib": "vue-cli-service build --target lib --name vue-run-sfc --dest ./dist/ ./src/index.js",
"release": "standard-version",
"pub": "npm run build:lib && npm run release && npm publish --registry http://registry.npmjs.org && git push --follow-tags origin master && gren release --override",
"build:docs": "vue-cli-service build",
"lint": "vue-cli-service lint --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/dream2023/vue-run-sfc"
},
"main": "dist/vue-run-sfc.umd.min.js",
"homepage": "https://github.com/dream2023/vue-run-sfc/",
"keywords": [
"vue-run-sfc",
"vue-run",
"vue-sfc",
"vue-runner",
"vue-code-editor"
],
"dependencies": {
"@babel/standalone": "^7.9.4",
"css-vars-ponyfill": "^2.2.1",
"deepmerge": "^4.2.2",
"screenfull": "^5.0.2",
"throttle-debounce": "^2.1.0",
"vue-codemirror": "^4.0.6",
"vue-element-loading": "^1.1.5",
"vue-multipane": "^0.9.5"
},
"devDependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}