-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.61 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.61 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
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
{
"name": "vite-plugin-svelte-monorepo",
"private": true,
"type": "module",
"scripts": {
"test": "run-s -c test:unit \"test:build {@}\" \"test:serve {@}\" \"test:build:watch {@}\" --",
"test:unit": "vitest run",
"test:serve": "vitest run -c vitest.config.e2e.ts",
"test:build": "cross-env TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
"test:build:watch": "cross-env TEST_BUILD_WATCH=1 vitest run -c vitest.config.e2e.ts",
"check": "run-p -c check:*",
"check:audit": "pnpm audit --prod",
"check:publint": "pnpm --filter \"./packages/*\" --parallel check:publint",
"check:types": "pnpm --filter \"./packages/*\" --parallel check:types",
"check:lint": "eslint --cache '**/*.{js,ts,svelte,md}'",
"check:format": "prettier --cache --ignore-path .gitignore . --ignore-unknown --check",
"lint": "pnpm check:lint --fix",
"format": "pnpm check:format --write",
"fixup": "run-s lint format",
"release": "pnpm changeset publish",
"prepare": "husky",
"playwright": "playwright-core",
"generate:types": "pnpm --filter \"./packages/*\" --parallel generate:types",
"generate:types-staged": "pnpm generate:types && :"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@sveltejs/eslint-config": "~8.3.4",
"@sveltejs/kit": "^2.49.5",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.19.1",
"cross-env": "^10.1.0",
"dts-buddy": "^0.6.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-svelte": "^3.13.0",
"execa": "^8.0.1",
"fs-extra": "^11.3.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"node-fetch": "^3.3.2",
"npm-run-all2": "^8.0.4",
"playwright-core": "1.58.2",
"prettier": "^3.7.3",
"prettier-plugin-svelte": "^3.4.0",
"publint": "^0.3.15",
"svelte": "^5.46.4",
"svelte-eslint-parser": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^8.0.0-beta.7",
"vitest": "^4.0.15"
},
"lint-staged": {
"*.{js,ts,svelte,html,md,svx}": "eslint --cache --fix",
"*": "prettier --cache --ignore-path .gitignore --ignore-unknown --write",
"packages/*/src/**/*": "pnpm generate:types-staged"
},
"packageManager": "pnpm@10.30.0",
"engines": {
"pnpm": "^10.2.0",
"node": "^20.19 || ^22.12 || >=24"
}
}