-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "purempv",
"version": "1.0.1",
"private": true,
"description": "Script to get the timestamps, cropping coordinates, and file path of the playing video, all within mpv",
"main": "main.js",
"scripts": {
"test": "jest src/",
"build": "rm main.js && rollup --config rollup.config.ts --configPlugin typescript",
"dev": "npm run build -- --watch"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4ndrs/PureMPV.git"
},
"author": "4ndrs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/4ndrs/PureMPV/issues"
},
"homepage": "https://github.com/4ndrs/PureMPV#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.5.0",
"@types/mpv-script": "^0.32.2",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"jest": "^29.5.0",
"rollup": "^3.9.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}