-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "svelte-aplayer",
"version": "0.1.2",
"scripts": {
"dev": "vite",
"build": "npm run build:wc && npm run build:svelte",
"build:wc": "cross-env CUSTOM_ELEMENT=1 vite build",
"build:svelte": "cross-env CUSTOM_ELEMENT=0 vite build",
"format": "prettier -w **/**/*.{svelte,ts,js,html,md}",
"serve": "vite preview"
},
"license": "MIT",
"browser": "dist/wc/svelte-aplayer.umd.js",
"module": "dist/wc/svelte-aplayer.es.js",
"homepage": "https://github.com/fengkx/svelte-aplayer",
"files": [
"dist/**/*"
],
"keywords": [
"player",
"aplayer",
"svelte",
"webcomponent",
"component"
],
"devDependencies": {
"@rollup/plugin-image": "^2.0.6",
"@sveltejs/vite-plugin-svelte": "next",
"cross-env": "^7.0.3",
"git-rev-sync": "^3.0.1",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"sass": "^1.32.8",
"svelte": "^3.35.0",
"svelte-preprocess": "^4.6.9",
"typescript": "^4.2.3",
"vite": "^2.1.3"
},
"pre-commit": [
"format"
]
}