-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "astroscope",
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.0",
"overrides": {
"vite": "^7"
},
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"validate": "turbo run test lint typecheck",
"dev": "pnpm --filter demo-boot dev",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.3",
"@types/node": "^25.6.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/coverage-v8": "^4.1.4",
"astro": "^6.1.8",
"daisyui": "^5.5.19",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.2.3",
"tsup": "^8.5.1",
"turbo": "^2.9.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.4"
}
}