@go-home-early/go-home-early98 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/package.json +62 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# go-home-early
|
|
2
|
+
|
|
3
|
+
## Project setup
|
|
4
|
+
```
|
|
5
|
+
npm install
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
### Compiles and hot-reloads for development
|
|
9
|
+
```
|
|
10
|
+
npm run serve
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Compiles and minifies for production
|
|
14
|
+
```
|
|
15
|
+
npm run build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Lints and fixes files
|
|
19
|
+
```
|
|
20
|
+
npm run lint
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Customize configuration
|
|
24
|
+
See [Configuration Reference](https://cli.vuejs.org/config/).
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@go-home-early/go-home-early98",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"main": "dist/go-home-early.common.js",
|
|
6
|
+
"browser": "dist/go-home-early.umd.min.js",
|
|
7
|
+
"unpkg": "dist/go-home-early.umd.min.js",
|
|
8
|
+
"jsdelivr": "dist/go-home-early.umd.min.js",
|
|
9
|
+
"description":"测试的组件包",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "vue-cli-service serve",
|
|
16
|
+
"build": "vue-cli-service build",
|
|
17
|
+
"build:lib": "vue-cli-service build --target lib --name go-home-early src/packages/index.js",
|
|
18
|
+
"lint": "vue-cli-service lint"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"core-js": "^3.8.3"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"vue": "^2.6.14"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@babel/core": "^7.12.16",
|
|
28
|
+
"@babel/eslint-parser": "^7.12.16",
|
|
29
|
+
"@vue/cli-plugin-babel": "~5.0.0",
|
|
30
|
+
"@vue/cli-plugin-eslint": "~5.0.0",
|
|
31
|
+
"@vue/cli-service": "~5.0.0",
|
|
32
|
+
"eslint": "^7.32.0",
|
|
33
|
+
"eslint-plugin-vue": "^8.0.3",
|
|
34
|
+
"vue": "^2.6.14",
|
|
35
|
+
"vue-template-compiler": "^2.6.14"
|
|
36
|
+
},
|
|
37
|
+
"eslintConfig": {
|
|
38
|
+
"root": true,
|
|
39
|
+
"env": {
|
|
40
|
+
"node": true
|
|
41
|
+
},
|
|
42
|
+
"extends": [
|
|
43
|
+
"plugin:vue/essential",
|
|
44
|
+
"eslint:recommended"
|
|
45
|
+
],
|
|
46
|
+
"parserOptions": {
|
|
47
|
+
"parser": "@babel/eslint-parser"
|
|
48
|
+
},
|
|
49
|
+
"rules": {}
|
|
50
|
+
},
|
|
51
|
+
"browserslist": [
|
|
52
|
+
"> 1%",
|
|
53
|
+
"last 2 versions",
|
|
54
|
+
"not dead"
|
|
55
|
+
],
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"type": "module",
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"access": "public",
|
|
60
|
+
"registry": "https://registry.npmjs.org/"
|
|
61
|
+
}
|
|
62
|
+
}
|