-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
83 lines (83 loc) · 2.13 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
{
"name": "clean-modules",
"author": "Daniel Grefberg <hello@danielgrefberg.com>",
"version": "3.1.1",
"description": "Clean up/prune unnecessary files and reduce the size of your `node_modules` directory. Useful for CI caches or for reducing the size of serverless functions.",
"repository": "https://github.com/duniul/clean-modules.git",
"homepage": "https://github.com/duniul/clean-modules#readme",
"bugs": {
"url": "https://github.com/duniul/clean-modules/issues"
},
"keywords": [
"node",
"node-modules",
"npm",
"yarn",
"pnpm",
"cli-tool",
"ci"
],
"license": "ISC",
"engines": {
"node": ">=14"
},
"files": [
"dist",
".cleanmodules-default",
"!.tsbuildinfo"
],
"packageManager": "pnpm@9.11.0",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "bin/cli.js",
"scripts": {
"cli": "tsx src/cli/cli.ts",
"build": "tsup",
"dev": "tsc --watch",
"test": "vitest",
"prepublishOnly": "pnpm build",
"lint": "biome check src && prettier --check src",
"lint:fix": "biome check --apply src && prettier --write src",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"clipanion": "^3.2.1",
"picomatch": "^2.3.0",
"pretty-bytes": "^6.1.0",
"pretty-ms": "^8.0.0",
"supports-color": "^9.4.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@changesets/cli": "^2.27.8",
"@tsconfig/node14": "^14.1.2",
"@types/mock-fs": "4.13.4",
"@types/node": "16",
"@types/picomatch": "2.3.4",
"@types/supports-color": "8.1.3",
"changesets-changelog-clean": "^1.3.0",
"memfs": "^4.12.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"tslib": "^2.7.0",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "5.6.2",
"vitest": "^2.1.1"
}
}