-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.22 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.22 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
{
"name": "node-minify",
"author": {
"name": "Rodolphe Stoclin",
"email": "rodolphe@2clics.net",
"url": "https://www.2clics.net"
},
"repository": {
"type": "git",
"url": "https://github.com/srod/node-minify.git"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.4.6",
"@changesets/cli": "2.29.8",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.19.15",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"babel-preset-minify": "0.5.2",
"copyfiles": "2.4.1",
"rimraf": "6.1.2",
"tsdown": "^0.20.3",
"typescript": "5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"description": "Monorepo for node-minify",
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/srod/node-minify",
"license": "MIT",
"packageManager": "bun@1.3.10",
"private": true,
"scripts": {
"build": "bun run build:deps && bun run --filter '!@node-minify/action' --parallel build && bun run --filter '@node-minify/action' build",
"build:deps": "bun run --filter '@node-minify/utils' build && bun run --filter '@node-minify/run' build",
"build:docs": "bun run --filter '@node-minify/docs' build",
"check-exports": "bun run --filter '*' check-exports",
"ci": "bun run build && bun run check-exports && bun run lint && bun run typecheck && bun run test:coverage",
"clean": "bun run clean:build",
"clean:build": "bunx rimraf packages/*/dist docs/dist docs/.astro",
"clean:test": "bunx rimraf tests/tmp/*.{js,js.map,css,html,json}",
"dev": "bun run --filter '*' dev",
"lint": "bun run --filter '*' lint",
"local-release": "bun run changeset:version && bun run changeset:release",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"changeset:version": "changeset version && bun update",
"changeset:release": "bun run build && bun scripts/publish.ts",
"format:check": "bun run --filter '*' format:check",
"format": "biome check --write .",
"typecheck": "bun run --filter '*' typecheck"
},
"type": "module",
"workspaces": [
"docs",
"packages/*",
"examples"
]
}