-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "ass-html5",
"version": "0.5.3",
"description": "Display ASS/SSA subtitles on html5 videos",
"main": "dist/ass.js",
"module": "dist/ass.mjs",
"types": "dist/ass.d.ts",
"browser": "dist/ass.min.js",
"scripts": {
"build": "pnpm lint && pnpm run build:normal && pnpm run build:minify",
"build:normal": "tsup",
"build:minify": "rollup -c --bundleConfigAsCjs",
"dev": "tsup --watch",
"release": "pnpm run build && changeset publish",
"lint": "tsc",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/luxluth/ass-html5.git"
},
"keywords": [
"ASS",
"SSA",
"subtitles",
"aegisub",
"libass"
],
"author": "luxluth",
"license": "MIT",
"bugs": {
"url": "https://github.com/luxluth/ass-html5/issues"
},
"homepage": "https://github.com/luxluth/ass-html5#readme",
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^22.5.5",
"ass-compiler": "^0.1.14",
"prettier": "^3.3.3",
"rollup": "^4.22.4",
"terser": "^5.33.0",
"tslib": "^2.7.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}