-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.84 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": "clean-modules",
"version": "4.0.0",
"description": "Saves space by removing redundant files from your node_modules. Useful for CI caches or reducing the size of serverless functions.",
"keywords": [
"ci",
"cli-tool",
"node",
"node-modules",
"npm",
"pnpm",
"yarn"
],
"homepage": "https://github.com/duniul/clean-modules#readme",
"bugs": {
"url": "https://github.com/duniul/clean-modules/issues"
},
"license": "ISC",
"author": "Daniel Grefberg <hello@danielgrefberg.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/duniul/clean-modules.git"
},
"bin": "bin/cli.js",
"files": [
"dist",
".cleanmodules-default",
"!.tsbuildinfo"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"cli": "node bin/cli.js",
"build": "tsdown",
"dev": "tsdown --sourcemap true --watch",
"test": "vitest run",
"test:watch": "vitest --watch",
"prepublishOnly": "pnpm build",
"stylecheck": "oxfmt --check src && oxlint src",
"typecheck": "tsc --noEmit",
"format": "oxfmt --write .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"version": "changeset version",
"release": "pnpm publish -r"
},
"dependencies": {
"picomatch": "^4.0.2"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@types/node": "22.19.18",
"@types/picomatch": "4.0.3",
"changesets-changelog-clean": "1.3.0",
"memfs": "4.57.2",
"oxfmt": "0.51.0",
"oxlint": "1.66.0",
"oxlint-tsgolint": "0.23.0",
"tsdown": "0.22.0",
"typescript": "6.0.3",
"vitest": "4.1.7"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.2.2"
}