-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "staledeps",
"version": "0.5.0",
"type": "module",
"description": "Find stale dependencies in the package.json file(s)",
"author": "Michael Mok",
"license": "MIT",
"homepage": "https://github.com/pmmmwh/staledeps#readme",
"bugs": "https://github.com/pmmmwh/staledeps/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pmmmwh/staledeps.git"
},
"files": [
"dist",
"!**/*.tsbuildinfo"
],
"bin": "dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint --report-unused-disable-directives .",
"lint:fix": "yarn lint --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.{ts,json,md,yaml,yml}\"",
"format:check": "prettier --ignore-path .gitignore --check \"**/*.{ts,json,md,yaml,yml}\"",
"typecheck": "tsc --noEmit",
"prepack": "yarn clean && yarn build"
},
"dependencies": {
"chalk": "^5.3.0",
"cliui": "^8.0.1",
"ms": "^3.0.0-canary.1",
"ora": "^8.0.1",
"p-limit": "^6.1.0",
"tslib": "^2.6.3",
"undici": "^7.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "rc-v8",
"@typescript-eslint/parser": "rc-v8",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"type-fest": "^4.21.0",
"typescript": "~5.7.2",
"typescript-eslint": "rc-v8"
},
"peerDependencies": {
"type-fest": "^4.0.0"
},
"peerDependenciesMeta": {
"type-fest": {
"optional": true
}
},
"resolutions": {
"ms": "patch:ms@npm:3.0.0-canary.1#.yarn/patches/ms-npm-3.0.0-canary.1-a95efad0b2.patch"
},
"engines": {
"node": ">=18"
}
}