-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 878 Bytes
/
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
{
"name": "rs-playlist-manager",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx index.ts",
"build": "tsc",
"format": "prettier .",
"format:fix": "prettier . --write",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"start": "node .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"author": "Kirin Patel <kirinpatel@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^20.17.7",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"prettier": "3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
},
"dependencies": {
"puppeteer": "^23.9.0"
}
}