-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 KB
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
51
52
53
{
"name": "every-ts",
"version": "3.0.1",
"author": "Jake Bailey",
"license": "MIT",
"description": "A CLI to build and bisect any version of TypeScript",
"keywords": [],
"repository": "github:jakebailey/every-ts",
"type": "module",
"bin": "./bin/every-ts.js",
"preferUnplugged": true,
"files": [
"bin",
"dist"
],
"dependencies": {
"@zkochan/cmd-shim": "^7.0.0",
"adm-zip": "^0.5.16",
"clipanion": "4.0.0-rc.4",
"execa": "^9.6.1",
"semver": "^7.7.3"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.1",
"@tsconfig/node20": "^20.1.0",
"@types/adm-zip": "^0.5.7",
"@types/node": "^18.19.130",
"@types/semver": "^7.7.1",
"dprint": "^0.50.2",
"eslint": "^9.39.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.5.0",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepack": "rimraf dist && npm run build"
},
"engines": {
"node": ">= 18.19"
},
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"pnpm": {
"onlyBuiltDependencies": [
"dprint"
]
}
}