-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"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.12",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.0",
"ass-compiler": "^0.1.15",
"prettier": "^3.4.2",
"rollup": "^4.34.1",
"terser": "^5.37.0",
"tslib": "^2.8.1",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}