-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
62 lines (62 loc) · 2.1 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
{
"name": "node-minify",
"description": "Monorepo for node-minify",
"homepage": "https://github.com/srod/node-minify",
"author": {
"name": "Rodolphe Stoclin",
"email": "[email protected]",
"url": "https://www.2clics.net"
},
"license": "MIT",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/srod/node-minify.git"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "node ./scripts/build-packages.js",
"build:docs": "bun run --filter './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:ci",
"clean": "bun clean:build",
"clean:build": "bunx rimraf packages/*/dist docs/dist docs/.astro",
"clean:test": "bunx rimraf tests/tmp/*.{js,js.map,css,html,json}",
"clean:git": "git restore --source=HEAD --staged --worktree -- tests/fixtures",
"dev": "bun run --filter '*' dev",
"lint": "bun run --filter '*' lint",
"local-release": "bun run changeset:version && bun run changeset:release",
"test": "bun run --filter '*' test && bun run clean:git",
"test:watch": "bun run --filter '*' test:watch",
"test:ci": "bun run --filter '*' test:ci",
"changeset": "changeset",
"changeset:version": "changeset version && bun install --no-frozen-lockfile",
"changeset:release": "bun run build && changeset publish",
"format:check": "bun run --filter '*' format:check",
"format": "biome check --write .",
"typecheck": "bun run --filter '*' typecheck"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.28.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "22.14.1",
"@vitest/coverage-v8": "1.6.1",
"@vitest/ui": "1.6.1",
"copyfiles": "2.4.1",
"rimraf": "6.0.1",
"tsup": "8.4.0",
"typescript": "5.8.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "1.6.1"
},
"workspaces": [
"docs",
"packages/*"
]
}