-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "shikwasa",
"version": "2.2.1",
"description": "A web audio player born for podcasts. With chapters, playback speed and forward/backward controls, it is best paired with your podcasting website.",
"files": [
"dist"
],
"main": "./dist/shikwasa.cjs.js",
"module": "./dist/shikwasa.es.js",
"exports": {
".": {
"import": "./dist/shikwasa.es.js",
"require": "./dist/shikwasa.cjs.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"devDependencies": {
"@vitejs/plugin-legacy": "^1.8.2",
"autoprefixer": "^10.4.2",
"cssnano": "^5.0.17",
"cypress": "^10.7.0",
"eslint": "^8.18.0",
"eslint-plugin-cypress": "^2.12.1",
"postcss": "^8.4.6",
"vite": "^2.9.8"
},
"scripts": {
"start": "vite",
"start:ci": "TARGET=ci npm start",
"start:demo": "npm run build&&TARGET=demo npm start",
"build": "TARGET=lib vite build",
"build:demo": "TARGET=demo vite build",
"preview:demo": "TARGET=demo vite preview",
"deploy": "gh-pages -d dist",
"lint": "eslint --fix src",
"test:open": "npx cypress open",
"test:ci": "npx cypress run"
},
"author": "Jessie Ji <jessunix+shikwasa@gmail.com> (https://jessieji.com)",
"keywords": [
"podcast",
"audio",
"player",
"html5audio",
"shikwasa",
"playback",
"chapter"
],
"license": "MIT",
"repository": "github:jessuni/shikwasa",
"browserslist": [
">0.2%",
"not ie <= 8"
]
}