-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
78 lines (78 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "rocket-render",
"description": "基于Vue2+ElementUI开发的低代码插件,通过JSON可快速搭建中后台项目.",
"version": "2.3.13",
"license": "MIT",
"private": false,
"author": {
"name": "河畔一角",
"email": "[email protected]",
"url": "http://www.imooc.com/t/1343480"
},
"main": "lib/rocket-render.umd.js",
"unpkg": "lib/rocket-render.umd.js",
"style": "lib/rocket-render.css",
"typings": "types/index.d.ts",
"files": [
"lib",
"types/*.d.ts"
],
"bugs": {
"url": "https://github.com/JackySoft/rocket-render/issues"
},
"homepage": "https://jackysoft.github.io/rocket-render/#/",
"publishConfig": {
"JackySoft:registry": "https://npm.pkg.github.com"
},
"keywords": [
"lowcode",
"vue rocket",
"vue-rocket",
"rocket-render"
],
"repository": {
"type": "git",
"url": "https://github.com/JackySoft/rocket-render.git"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lib": "vue-cli-service build --target lib --name rocket-render --dest lib packages/index.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"format": "prettier --write \"examples/**/*.{js,ts,jsx,tsx}\" \"examples/**/*.vue\" ./**/*.{js,ts} ",
"update:version": "npm version patch",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"dependencies": {
"element-ui": "^2.15.6",
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"async-validator": "^4.0.7",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"sass-loader": "10.1.0",
"standard-version": "^9.5.0",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.8.2",
"vuepress-plugin-auto-sidebar": "^2.3.2",
"vuepress-plugin-demo-container": "^0.2.0",
"axios": "^0.24.0",
"core-js": "^3.19.0",
"vue-router": "^3.5.3"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}