-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.39 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.39 KB
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": "vue-live2d",
"version": "1.3.8",
"author": "evgo <evgo2017@qq.com>",
"description": "一个适用于 Vue 2 和 Vue 3 项目的 Live2D 看板组件",
"license": "MIT",
"main": "./src/index.vue",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --fix",
"pack": "del /f /q tests\\*.tgz 2>nul & npm pack --pack-destination tests & move /y tests\\vue-live2d-*.tgz tests\\vue-live2d-test.tgz",
"predev": "npm run build && npm run pack",
"test:v2w": "cd tests/vue2-webpack && npm i ../vue-live2d-test.tgz && npm run serve",
"test:v2v": "cd tests/vue2-vite && npm i ../vue-live2d-test.tgz && npm run dev",
"test:v3v": "cd tests/vue3-vite && npm i ../vue-live2d-test.tgz && npm run dev"
},
"homepage": "https://evgo2017.com",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evgo2017/vue-live2d.git"
},
"bugs": {
"url": "https://github.com/evgo2017/vue-live2d/issues"
},
"keywords": [
"vue",
"live2d",
"vue-live2d"
],
"private": false,
"files": [
"LICENSE",
"README.md",
"package.json",
"src"
],
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.7.16"
},
"overrides": {
"cross-spawn": "^7.0.6",
"postcss": "^8.5.6",
"webpack-dev-server": "^5.2.3"
},
"devDependencies": {
"@babel/core": "7.23.0",
"@babel/eslint-parser": "7.23.10",
"@vue/cli-plugin-babel": "^5.0.9",
"@vue/cli-plugin-eslint": "^5.0.9",
"@vue/cli-service": "^5.0.9",
"@vue/eslint-config-standard": "8.0.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^9.33.0",
"vue-template-compiler": "^2.7.16"
},
"babel": {
"presets": [
"@vue/cli-plugin-babel/preset"
]
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"src/lib/**"
],
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"peerDependencies": {
"vue": "^2.0.0 || ^3.0.0"
}
}