forked from sebastian-software/npm-sweep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.67 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
{
"name": "npm-sweep",
"version": "0.1.2",
"description": "Interactive tool for managing end-of-life of your npm packages",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"npm-sweep": "dist/cli/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/npm-sweep.git"
},
"homepage": "https://github.com/sebastian-software/npm-sweep#readme",
"bugs": {
"url": "https://github.com/sebastian-software/npm-sweep/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli/index.js",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"npm",
"deprecate",
"unpublish",
"package-management",
"cli",
"tui",
"maintenance"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"conf": "^13.1.0",
"ink": "^5.1.0",
"ink-text-input": "^6.0.0",
"ora": "^8.2.0",
"react": "^18.3.1",
"undici": "^7.3.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.12.0",
"@types/react": "^18.3.18",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"msw": "^2.7.0",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.4"
}
}