-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.49 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.49 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "root",
"description": "Monorepo for bits-ui",
"version": "0.0.0",
"scripts": {
"build": "pnpm -r build",
"build:packages": "pnpm -F \"./packages/**\" --parallel build",
"check": "pnpm build:packages && pnpm --parallel check",
"ci:publish": "pnpm build:packages && changeset publish",
"dev:docs": "pnpm -F docs dev",
"dev:package": "pnpm -F bits-ui dev",
"dev": "pnpm --reporter append-only --color \"/dev:/\"",
"format": "prettier --write .",
"lint": "oxlint . && eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm -F \"./{packages,tests}/**\" --parallel --reporter append-only --color test",
"test:browser": "pnpm -F tests test:browser",
"test:browser:chromium": "pnpm -F tests test:browser --browser chromium",
"test:components": "pnpm -F tests test",
"test:utils": "pnpm -F bits-ui test",
"bundle:analyze": "pnpm -F @bits-ui/bundle-analyzer bundle:analyze",
"bundle:compare": "pnpm -F @bits-ui/bundle-analyzer bundle:compare"
},
"keywords": [],
"author": "Hunter Johnston <https://github.com/huntabyte>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.35.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-oxlint": "^1.16.0",
"eslint-plugin-svelte": "^3.12.3",
"globals": "^16.4.0",
"oxlint": "^1.16.0",
"playwright": "catalog:",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"svelte": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "^8.44.0",
"wrangler": "^4.37.1"
},
"type": "module",
"engines": {
"pnpm": ">=10.12.1",
"node": ">=20"
},
"packageManager": "pnpm@10.33.0",
"private": true,
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild",
"workerd"
]
},
"workspaces": {
"packages": [
"packages/*",
"docs",
"tests",
"bundle-analyzer"
],
"catalog": {
"@sveltejs/kit": "2.49.5",
"@sveltejs/vite-plugin-svelte": "^6.2.0",
"@tailwindcss/vite": "^4.1.13",
"@types/node": "^20.19.16",
"playwright": "1.55.0",
"runed": "0.37.1",
"svelte": "5.55.4",
"svelte-check": "^4.4.6",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vitest": "^3.2.4",
"vitest-browser-svelte": "^1.1.0"
}
}
}