This repository has been archived by the owner on Aug 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.5 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": "vuetube-extractor",
"version": "0.1.0",
"description": "Core API wrapper for VueTube",
"main": "dict/index.js",
"types": "dist/index.d.ts",
"author": "404-Program-not-found (Alex)",
"license": "GPL-3.0",
"private": true,
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^18.15.11",
"@types/user-agents": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.6",
"copyfiles": "^2.4.1",
"eslint": "^8.39.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^28.1.0",
"jest-junit": "^16.0.0",
"ts-jest": "^28.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"scripts": {
"test": "jest",
"ci": "jest --ci --reporters=default --reporters=jest-junit",
"test-build": "npm run build && npm run test",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"build": "npm run clean && tsc -p tsconfig.json && npm run copy-files",
"clean": "rm -rf dist build",
"copy-files": "copyfiles --error --up 1 src/youtube/proto/youtube.proto dist"
},
"dependencies": {
"@vuetubeapp/http": "^1.4.2",
"prettier": "^2.8.8",
"protobufjs": "^7.2.3",
"user-agents": "^1.0.1381"
}
}