-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "es-check-min",
"version": "1.0.11",
"description": "A CLI tool and library to find the minimum compatible ECMAScript version of a JavaScript file.",
"keywords": [
"es-check",
"cli",
"version-detection",
"npm-package",
"ecmascript"
],
"homepage": "https://github.com/kitschpatrol/es-check-min",
"bugs": "https://github.com/kitschpatrol/es-check-min/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitschpatrol/es-check-min.git"
},
"license": "MIT",
"author": {
"name": "Eric Mika",
"email": "eric@ericmika.com",
"url": "https://ericmika.com"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
}
},
"main": "./dist/lib/index.js",
"module": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"bin": {
"es-check-min": "dist/bin/cli.js"
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsdown",
"clean": "shx rm -f pnpm-lock.yaml && git clean -fdX -e !.claude/",
"fix": "ksc fix",
"lint": "ksc lint",
"release": "bumpp --commit 'Release: %s' && pnpm build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') pnpm publish",
"test": "vitest run"
},
"dependencies": {
"@types/node": "^20.19.41",
"@types/yargs": "^17.0.35",
"es-check": "^9.6.4",
"execa": "^9.6.1",
"pkg-types": "^2.3.1",
"yargs": "^18.0.0"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@kitschpatrol/shared-config": "^7.6.0",
"bumpp": "^11.1.0",
"mdat-plugin-cli-help": "^3.0.0",
"publint": "^0.3.21",
"shx": "^0.4.0",
"tsdown": "^0.22.0",
"typescript": "~5.9.3",
"vitest": "^4.1.6"
},
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=20.19.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.18.0"
}
}
}