-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 874 Bytes
/
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
{
"name": "vite-plugin-csp-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"test/fixtures/*"
],
"scripts": {
"build": "bun scripts/build.ts",
"build_fixtures": "bun run clean && bun scripts/fixtures.ts && node --experimental-strip-types scripts/fixtures.ts",
"clean": "bun scripts/clean.ts",
"lint": "biome ci .",
"publint": "publint ./packages/vite-bun && publint ./packages/vite-node && publint ./packages/cli-bun",
"typelint": "attw ./packages/vite-bun && attw ./packages/vite-node && attw ./packages/cli-bun",
"test": "bun test ./test/index.test.ts",
"e2e": "bunx playwright test"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.17.3",
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.50.1",
"publint": "0.3.6",
"typescript": "5.7.3",
"vite": "6.1.1"
}
}