-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 2.53 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@podlove/html5-audio-driver",
"version": "2.0.3",
"description": "Pure html5 audio driver",
"author": "Alexander Heimbuch <github@heimbu.ch>",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./actions": {
"import": "./dist/actions.js",
"types": "./dist/actions.d.ts"
},
"./audio": {
"import": "./dist/audio.js",
"types": "./dist/audio.d.ts"
},
"./connect": {
"import": "./dist/connect.js",
"types": "./dist/connect.d.ts"
},
"./events": {
"import": "./dist/events.js",
"types": "./dist/events.d.ts"
},
"./filters": {
"import": "./dist/filters.js",
"types": "./dist/filters.d.ts"
},
"./hls": {
"import": "./dist/hls.js",
"types": "./dist/hls.d.ts"
},
"./media": {
"import": "./dist/media.js",
"types": "./dist/media.d.ts"
},
"./props": {
"import": "./dist/props.js",
"types": "./dist/props.d.ts"
},
"./utils": {
"import": "./dist/utils.js",
"types": "./dist/utils.d.ts"
},
"./video": {
"import": "./dist/video.js",
"types": "./dist/video.d.ts"
},
"./types": {
"types": "./dist/types.d.ts"
}
},
"scripts": {
"start": "vite serve",
"clean": "rm -rf dist/* && mkdir -p dist/",
"build": "vite build",
"test": "cypress run --browser chrome",
"test:dev": "cypress open --browser chrome",
"release": "release-it",
"prepare": "husky install",
"format": "prettier -w {src,cypress}/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/podlove/html5-audio-driver.git"
},
"dependencies": {
"hls.js": "1.2.8",
"ramda": "0.28.0"
},
"devDependencies": {
"cypress": "12.0.1",
"milligram": "1.4.0",
"normalize.css": "8.0.1",
"release-it": "15.5.1",
"typescript": "4.9.3",
"vite": "3.2.5",
"vitest": "0.25.5",
"prettier": "2.8.1",
"pretty-quick": "3.1.3",
"husky": "8.0.0",
"@types/ramda": "0.28.20",
"@types/hls.js": "1.0.0",
"vite-plugin-dts": "1.7.1",
"rollup-plugin-delete": "2.0.0"
},
"release-it": {
"hooks": {
"before:init": [
"npm test"
],
"after:bump": [
"npm run build"
]
},
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
}
}
}