-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "vite-plugin-entry-shaking-root",
"type": "module",
"version": "0.0.0",
"private": true,
"author": "Charles Gruenais",
"license": "MIT",
"homepage": "https://github.com/Dschungelabenteuer/vite-plugin-entry-shaking/tree/main/#readme",
"repository": {
"type": "git",
"url": "https://github.com/Dschungelabenteuer/vite-plugin-entry-shaking"
},
"bugs": {
"url": "https://github.com/Dschungelabenteuer/vite-plugin-entry-shaking/issues"
},
"engines": {
"node": ">=20.1.0"
},
"scripts": {
"postinstall": "pnpm build",
"build": "pnpm --filter \"./packages/core\" build && pnpm --filter \"./packages/debugger\" build",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"format": "biome format . --fix",
"generate-example": "node scripts/generate-example",
"check": "pnpm format && pnpm lint && pnpm test",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@types/prompts": "^2.4.9",
"@yungezeit/eslint-base": "^0.0.12",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"ora": "^8.1.0",
"prompts": "^2.4.2"
},
"pnpm": {
"packageExtensions": {
"vite": {
"dependencies": {
"postcss": "^8.4.31"
}
}
}
}
}