-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "@smoljs/monorepo",
"version": "0.0.1",
"description": "Yet Another Smol JavaScript Framework",
"author": "@Razz21",
"license": "MIT",
"scripts": {
"build:packages": "pnpm --filter \"./packages/*\" build",
"lint": "biome ci .",
"lint:fix": "biome lint --apply .",
"prepare": "husky",
"test": "vitest",
"test:run": "vitest run"
},
"keywords": [],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "3.0.4",
"happy-dom": "^16.7.2",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"typescript": "^5.5.4",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.0.0",
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx}": ["biome lint --apply --no-errors-on-unmatched"]
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild"]
},
"stackblitz": {
"installDependencies": true,
"startCommand": "pnpm build:packages"
}
}