forked from sveltejs/vite-plugin-svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.53 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
{
"name": "vite-plugin-svelte-monorepo",
"private": true,
"type": "module",
"scripts": {
"test": "run-s -c test:unit test:build test:serve",
"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",
"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 --ignore-path .gitignore '**/*.{js,ts,svelte,html,svx,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 install",
"playwright": "playwright-core",
"generate:types": "pnpm --filter \"./packages/*\" --parallel generate:types"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"cross-env": "^7.0.3",
"dts-buddy": "^0.4.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-svelte": "^2.35.0",
"eslint-plugin-unicorn": "^49.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"playwright-core": "~1.39.0",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.0",
"publint": "^0.2.5",
"svelte": "^4.2.3",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vitest": "^0.34.6"
},
"lint-staged": {
"*.{js,ts,svelte,html,md,svx}": "eslint --cache --fix",
"*": [
"prettier --cache --ignore-path .gitignore --ignore-unknown --write"
]
},
"packageManager": "pnpm@8.10.5",
"engines": {
"pnpm": "^8.6.3",
"node": "^18.0.0 || >=20"
},
"pnpm": {
"overrides": {
"@sveltejs/vite-plugin-svelte": "workspace:^",
"@sveltejs/vite-plugin-svelte-inspector": "workspace:^",
"svelte": "$svelte",
"vite": "$vite",
"@adobe/css-tools@<4.3.1": "^4.3.1"
}
}
}