-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "assjs",
"version": "0.1.3",
"type": "module",
"description": "A lightweight JavaScript ASS subtitle renderer",
"main": "dist/ass.js",
"types": "dist/ass.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "rollup -c -w",
"lint": "eslint src test",
"unit": "vitest run",
"test": "npm run lint && npm run unit",
"coverage": "vitest run --coverage",
"build": "rollup -c",
"postbuild": "tsc && api-extractor run --local",
"preversion": "npm test",
"version": "npm run build && git add -A ./dist",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weizhenye/ASS.git"
},
"keywords": [
"ASS",
"subtitle",
"renderer"
],
"author": "Zhenye Wei",
"license": "MIT",
"bugs": {
"url": "https://github.com/weizhenye/ASS/issues"
},
"homepage": "https://ass.js.org/",
"devDependencies": {
"@microsoft/api-extractor": "^7.47.9",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@vitest/browser": "2.0",
"@vitest/coverage-istanbul": "2.0",
"ass-compiler": "^0.1.14",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-unicorn": "^55.0.0",
"lightningcss": "^1.27.0",
"playwright": "^1.45.3",
"rollup": "^4.21.3",
"typescript": "^5.6.2",
"vitest": "2.0"
}
}