-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.81 KB
/
package.json
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
{
"name": "npm-deprecated-check",
"type": "module",
"version": "1.1.2",
"description": "Check for deprecated packages",
"author": "KID-joker <kid_joker@126.com>",
"license": "MIT",
"homepage": "https://github.com/KID-joker/npm-deprecated-check#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/KID-joker/npm-deprecated-check.git"
},
"bugs": "https://github.com/KID-joker/npm-deprecated-check/issues",
"keywords": [
"cli",
"cli-tool",
"dependencies",
"deprecated",
"OpenAI",
"ai-recommend"
],
"main": "dist/cli.mjs",
"module": "dist/cli.mjs",
"bin": {
"ndc": "bin/ndc.mjs"
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"preferGlobal": true,
"scripts": {
"build": "unbuild",
"dev": "tsx ./src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp && pnpm publish --no-git-checks",
"test": "node --test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@pnpm/lockfile-file": "^7.0.6",
"@pnpm/logger": "5.1.0",
"@yarnpkg/lockfile": "^1.1.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"node-fetch": "^3.3.2",
"semver": "^7.6.3",
"yocto-spinner": "^0.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@antfu/utils": "^0.7.10",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"@types/yarnpkg__lockfile": "^1.1.9",
"bumpp": "^9.8.1",
"eslint": "^9.14.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,md}": [
"eslint --fix"
]
}
}