-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
95 lines (95 loc) · 2.63 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "vuesax3",
"version": "4.2.1",
"description": "Framework Components for Vue 3",
"license": "MIT",
"author": "ldrovira <luisdanielrovira8@gmail.com>",
"homepage": "https://lk77.github.io/vuesax/#/",
"repository": "lk77/vuesax",
"bugs": {
"url": "https://github.com/lk77/vuesax/issues"
},
"keywords": [
"vuesax",
"vue",
"vuejs",
"vue-components",
"components",
"component",
"javascript",
"css",
"framework",
"ui",
"frontend",
"responsive",
"stylus"
],
"main": "dist/vuesax.common.js",
"unpkg": "dist/vuesax.umd.min.js",
"jsdelivr": "dist/vuesax.umd.min.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"dev": "vuepress dev docs",
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build --target lib --name vuesax src/index.js",
"lint": "vue-cli-service lint",
"v": "npm version patch",
"v2": "npm version minor",
"p": "npm publish",
"deploy": "npm run build && git add . && git commit -m 'deploy' && npm run v && npm run p && git push",
"deploy2": "npm run build && git add . && git commit -m 'deploy' && npm run v2 && npm run p && git push",
"docs:build": "vuepress build docs",
"docs:deploy": "sh scripts/deploy.sh",
"deployx": "npm run docs:deploy && npm run deploy",
"deployx2": "npm run docs:deploy && npm run deploy2",
"new:component": "sh scripts/newComponent.sh"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/core": "^7.21.3",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.2.47",
"@vuepress/bundler-webpack": "^2.0.0-beta.61",
"@vuepress/plugin-register-components": "^2.0.0-beta.61",
"@vuepress/plugin-search": "^2.0.0-beta.61",
"@vuepress/theme-default": "^2.0.0-beta.61",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.29.1",
"eslint": "^8.36.0",
"eslint-plugin-vue": "^9.10.0",
"file-loader": "^6.2.0",
"node-scss": "^7.0.3",
"path-browserify": "^1.0.1",
"prefixfree": "^1.0.0",
"sass-loader": "^13.2.1",
"scss-loader": "^0.0.1",
"stream": "^0.0.2",
"style-loader": "^3.3.2",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"viewcode": "0.0.27",
"vue": "^3.2.47",
"vue-loader": "^17.0.1",
"vue-router": "^4.1.6",
"vuepress": "^2.0.0-beta.61",
"webpack": "^5.76.3"
},
"babel": {
"presets": [
"@vue/app"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}