-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "@guidepup/record",
"version": "0.1.0",
"description": "Tools for screen recording.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Craig Morten <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guidepup/record"
},
"bugs": {
"url": "https://github.com/guidepup/record/issues"
},
"homepage": "https://github.com/guidepup/record",
"keywords": [
"recording",
"record",
"screencapture",
"screen-recording"
],
"scripts": {
"build": "yarn clean && yarn compile",
"ci": "yarn clean && yarn lint && yarn test:coverage && yarn build",
"clean": "rimraf lib",
"compile": "tsc",
"lint": "eslint . --ext .ts --cache",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:coverage": "yarn test --coverage",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.4.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"ffmpeg-static": "^5.2.0"
}
}