-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 856 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 856 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
{
"description": "Some useful scripts",
"homepage": "https://github.com/DTrombett/useful-scripts#readme",
"name": "useful-scripts",
"version": "0.0.0",
"author": "DTrombett <d@trombett.org>",
"license": "MIT",
"main": "src/index.ts",
"private": true,
"type": "module",
"bin": {
"fold": "./src/fold.ts"
},
"bugs": {
"url": "https://github.com/DTrombett/useful-scripts/issues"
},
"dependencies": {
"playwright": "^1.58.0",
"undici": "^7.19.1"
},
"devDependencies": {
"@tsconfig/node-lts": "^24.0.0",
"@tsconfig/node-ts": "^23.6.2",
"@tsconfig/recommended": "^1.0.13",
"@types/har-format": "^1.2.16",
"@types/node": "^24.10.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DTrombett/useful-scripts.git"
},
"scripts": {
"start": "node --experimental-strip-types --inspect .",
"test": "tsc"
}
}