-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 914 Bytes
/
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
{
"name": "pgs.js",
"version": "0.0.13",
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"src",
"tsconfig.json"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
}
},
"author": "monyone <monyone.teihen@gmail.com>",
"description": "PGS (Presentation Graphic Stream) Subtitle For HTML5 Media Playback",
"repository": {
"type": "git",
"url": "https://github.com/monyone/pgs.js"
},
"license": "MIT",
"keywords": [
"html5",
"subtitle",
"pgs"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && vite build",
"prepublishOnly": "rimraf dist && tsc && vite build"
},
"devDependencies": {
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"vite": "^5.4.1"
}
}