-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "libpgs",
"version": "0.8.1",
"author": "David Schulte",
"license": "MIT",
"description": "Renderer for graphical subtitles (PGS) in the browser. ",
"keywords": [
"libpgs",
"pgs",
"pgssub",
"subtitle"
],
"homepage": "https://github.com/Arcus92/libpgs-js",
"repository": {
"type": "git",
"url": "git+https://github.com/Arcus92/libpgs-js.git"
},
"bugs": {
"url": "https://github.com/Arcus92/libpgs-js/issues"
},
"main": "dist/libpgs.js",
"types": "dist/libpgs.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "jest",
"clear": "rm -rf ./dist"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/recommended": "^1.0.6",
"@types/jest": "^29.5.12",
"canvas": "^2.11.2",
"core-js": "^3.38.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.18.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"whatwg-fetch": "^3.6.20"
}
}