-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 2.88 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "depsweep",
"version": "0.6.3",
"description": "CLI tool that identifies and removes unused dependencies",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "rm -rf dist && tsc",
"major": "npm version major; cd dist && npm version major",
"minor": "npm version minor; cd dist && npm version minor",
"ncu": "ncu -u; cd dist && ncu -u;",
"prepare": "npm run build",
"start": "npm run build && node dist/index.js",
"pretest": "npm run build",
"test": "jest --no-cache",
"test:coverage": "jest --coverage",
"test:e2e": "jest --config jest.config.e2e.ts",
"test:unit": "jest --config jest.config.unit.ts",
"test:watch": "jest --watch"
},
"dependencies": {
"@babel/parser": "^7.26.7",
"@babel/traverse": "^7.26.7",
"axios": "^1.7.9",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"express": "^4.21.2",
"find-up": "^7.0.0",
"globby": "^14.0.2",
"isbinaryfile": "^5.0.4",
"koa": "^2.15.3",
"micromatch": "^4.0.8",
"mongodb": "^6.12.0",
"mongoose": "^8.9.5",
"node-fetch": "^3.3.2",
"ora": "^8.1.1",
"react": "^19.0.0",
"shell-escape": "^0.2.0",
"sqlite": "^5.1.1",
"tslib": "^2.8.1",
"vue": "^3.5.13",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.6",
"@types/cli-progress": "^3.11.6",
"@types/jest": "^29.5.14",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.10.10",
"@types/shell-escape": "^0.2.3",
"jest": "^29.7.0",
"mikey-pro": "^7.5.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"bin": {
"depsweep": "./dist/index.js"
},
"homepage": "https://github.com/chiefmikey/depsweep",
"repository": {
"type": "git",
"url": "https://github.com/chiefmikey/depsweep.git"
},
"bugs": {
"url": "https://github.com/chiefmikey/depsweep/issues"
},
"license": "MIT",
"keywords": [
"npm",
"cli",
"dependencies",
"unused",
"depsweep",
"package.json",
"node"
],
"author": "Mikl Wolfe <[email protected]> (https://github.com/chiefmikey)",
"imports": {
"#/*": {
"default": "./dist/*.js",
"types": "./src/*.ts"
}
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"#/*": {
"import": "./dist/*.js",
"types": "./src/*.ts"
}
},
"prettier": "@mikey-pro/prettier-config",
"eslintConfig": {
"extends": "@mikey-pro/eslint-config"
},
"stylelint": {
"extends": "@mikey-pro/stylelint-config"
},
"engineStrict": true,
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"preferGlobal": true
}