-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 890 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 890 Bytes
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
{
"name": "accessify",
"description": "A simple REST API to generate and cache anonymous Spotify access tokens using Playwright",
"version": "1.0.0",
"main": "dist/index.js",
"private": true,
"author": {
"email": "kiyomi@mjba.my",
"name": "iaMJ"
},
"license": "MIT",
"lint-staged": {
"*.ts": [
"pnpm format"
]
},
"scripts": {
"start": "tsup && node dist/server.js",
"start:run": "node dist/server.js",
"format": "biome format --write ./src",
"prepare": "husky"
},
"dependencies": {
"@hono/node-server": "^1.19.7",
"dotenv": "^17.2.3",
"hono": "^4.11.1",
"playwright": "^1.57.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/bun": "latest",
"@types/node": "^24.10.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}