-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.51 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.51 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
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": "@usex/prune-mod",
"description": "Fast and efficient tool to reduce node_modules size by up to 60%. Safely removes unnecessary files like docs, tests, and dev configs while keeping your app working perfectly. Ideal for serverless, Docker, and deployment optimization.",
"version": "0.0.14",
"type": "module",
"files": [
"dist",
"assets/logo.svg",
"./dist"
],
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"keywords": [
"node_modules",
"prune",
"cleanup",
"optimize",
"reduce",
"shrink",
"size",
"deployment",
"serverless",
"docker",
"nodejs",
"bun",
"devops",
"performance",
"clean",
"space-saver",
"bundle-size",
"disk-space"
],
"author": {
"name": "Ali Torki",
"url": "https://github.com/ali-master",
"email": "ali_4286@live.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ali-master/prune-mod.git"
},
"bugs": {
"url": "https://github.com/ali-master/prune-mod/issues"
},
"homepage": "https://github.com/ali-master/prune-mod#readme",
"logo": "https://raw.githubusercontent.com/ali-master/prune-mod/master/assets/logo.svg",
"bin": {
"prune-mod": "./dist/runtime.js"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0",
"npm": ">=8.0.0"
},
"sideEffects": false,
"scripts": {
"build": "bunup",
"dev": "bunup --watch",
"clean": "bunx rimraf dist",
"clean:all": "bunx rimraf dist node_modules",
"test:types": "tsc --noEmit",
"test": "CI=true vitest",
"test:junit": "bun run test --reporter=junit --outputFile=test-report.junit.xml",
"test:watch": "bun run test --watch",
"test:ui": "bun run test --ui --coverage.enabled=true",
"test:coverage": "bun run test run --coverage",
"test:debug": "vitest --inspect-brk --pool forks --poolOptions.forks.singleFork",
"test:debug:watch": "bun run test:debug --watch --poolOptions.threads.isolate false",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests",
"prepublish:beta": "bun run build",
"publish:beta": "bun publish --tag beta",
"prepublish:npm": "bun run build",
"publish:npm": "bun publish",
"prerelease": "bun run test",
"release": "standard-version",
"postrelease": "bun run build && git push --follow-tags origin master && bun publish",
"release:beta": "standard-version --prerelease beta",
"postrelease:beta": "bun run build && git push --follow-tags origin master && bun publish --tag beta"
},
"dependencies": {
"chalk": "^5.6.2",
"minimatch": "^10.0.3",
"update-notifier": "^7.3.1"
},
"peerDependencies": {
"chalk": "^5",
"minimatch": "^10",
"update-notifier": "^7"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/minimatch": "^6.0.0",
"@types/node": "^24.7.2",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"bunup": "^0.14.20",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
},
"packageManager": "bun@1.3.0"
}