-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.76 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
{
"name": "check-my-engine",
"version": "0.2.0",
"description": "Flags and blocks dependencies whose engines.node range does not cover your project's declared engines.node range.",
"keywords": [
"npm",
"pnpm",
"engines",
"node",
"semver",
"audit",
"compatibility",
"lockfile"
],
"author": "MCMXC <mcmxcdev@protonmail.com>",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.9.0",
"bin": {
"check-my-engine": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": "^22.13.0 || >=24.0.0",
"npm": ">=9.0.0",
"pnpm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcmxcdev/check-my-engine.git"
},
"bugs": {
"url": "https://github.com/mcmxcdev/check-my-engine/issues"
},
"homepage": "https://github.com/mcmxcdev/check-my-engine#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --write .",
"lint": "biome check .",
"lint:fix": "pnpm lint --fix",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"check": "node dist/cli.js check",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"commander": "^15.0.0",
"picocolors": "^1.1.1",
"semver": "^7.8.5",
"yaml": "^2.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@changesets/cli": "^2.31.0",
"@types/node": "^24.13.2",
"@types/semver": "^7.7.1",
"prettier": "^3.9.4",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}