-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 2.01 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
{
"name": "alice-player",
"version": "0.0.4",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint \"src/**/*.{ts,js,json,vue}\"",
"format": "eslint \"src/**/*.{ts,js,json,vue}\" --fix && prettier \"src/**/*.{ts,js,json,vue}\" --write",
"format:lint": "eslint \"src/**/*.{ts,js,json,vue}\" --fix",
"format:prettier": "prettier \"src/**/*.{ts,js,json,vue}\" --write",
"git:commit": "git add . && git commit",
"gen:icon": "node scripts/import-svg-icons.js && eslint \"src/components/Icon.vue\" --fix && prettier \"src/components/Icon.vue\" --write",
"release": "vite build && npm publish --registry http://registry.npmjs.org --access public"
},
"dependencies": {
"@yzfe/svgicon": "^1.0.1",
"@yzfe/vue3-svgicon": "^1.0.1",
"chroma-js": "^2.1.1",
"@moezx/colorthief": "^2.3.2-1",
"js-cookie": "^3.0.0",
"object-hash": "^2.1.1",
"vue": "^3.0.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-prettier": "^6.0.0",
"autoprefixer": "^10.2.5",
"camelcase": "^6.2.0",
"eslint": "^7.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.9.0",
"prettier": "^2.3.0",
"sass": "^1.32.12",
"sass-loader": "^12.0.0",
"vite": "^2.2.4",
"vite-plugin-svgicon": "^1.0.0-alpha.0"
},
"files": [
"dist"
],
"main": "./dist/samoyedplayer.umd.js",
"module": "./dist/samoyedplayer.es.js",
"exports": {
".": {
"import": "./dist/samoyedplayer.es.js",
"require": "./dist/samoyedplayer.umd.js"
}
},
"description": "> A beautiful H5 music player built with Vue3. 🍉",
"repository": {
"type": "git",
"url": "git+https://github.com/mashirozx/alice-player.git"
},
"keywords": [
"Vue3",
"player"
],
"author": "Mashiro",
"bugs": {
"url": "https://github.com/mashirozx/alice-player/issues"
},
"homepage": "https://github.com/mashirozx/alice-player#readme"
}