-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
99 lines (99 loc) · 3.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
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
{
"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": "turbo --filter \"./packages/*\" build",
"build:docs": "turbo --filter \"./docs\" build",
"check-exports": "turbo check-exports",
"ci": "bun run build && bun run check-exports && bun run lint && 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": "turbo dev --concurrency 30",
"lint": "turbo lint",
"local-release": "bun run changeset:version && bun run changeset:release",
"test": "turbo test && bun run clean:git",
"test:watch": "turbo run test:watch",
"test:ci": "turbo run test:ci",
"changeset": "changeset",
"changeset:version": "changeset version && bun install --no-frozen-lockfile",
"changeset:release": "bun run build && changeset publish",
"format:check": "turbo run format:check",
"format": "biome check --write ."
},
"dependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/cli": "2.27.10",
"@node-minify/babel-minify": "workspace:*",
"@node-minify/clean-css": "workspace:*",
"@node-minify/cli": "workspace:*",
"@node-minify/core": "workspace:*",
"@node-minify/crass": "workspace:*",
"@node-minify/cssnano": "workspace:*",
"@node-minify/csso": "workspace:*",
"@node-minify/google-closure-compiler": "workspace:*",
"@node-minify/html-minifier": "workspace:*",
"@node-minify/jsonminify": "workspace:*",
"@node-minify/no-compress": "workspace:*",
"@node-minify/run": "workspace:*",
"@node-minify/sqwish": "workspace:*",
"@node-minify/terser": "workspace:*",
"@node-minify/types": "workspace:*",
"@node-minify/uglify-es": "workspace:*",
"@node-minify/uglify-js": "workspace:*",
"@node-minify/utils": "workspace:*",
"@node-minify/yui": "workspace:*",
"@tsconfig/node22": "^22.0.0",
"@types/node": "22.10.1",
"@vitest/coverage-v8": "1.6.0",
"@vitest/ui": "1.6.0",
"copyfiles": "2.4.1",
"fix-tsup-cjs": "^1.2.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"node-notifier": "10.0.1",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"turbo": "2.3.3",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.1.3",
"vitest": "1.6.0"
},
"lint-staged": {
"*.ts": [
"biome format --write",
"biome check --apply",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4"
},
"workspaces": [
"docs",
"packages/*"
]
}