forked from huntabyte/bits-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"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": "pnpm -F \"./packages/**\" svelte-kit sync && pnpm -r --parallel --reporter append-only --color dev",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm -F \"./{packages,tests}/**\" --parallel --reporter append-only --color test",
"test:browser": "pnpm -F tests test:browser",
"test:components": "pnpm -F tests test",
"test:utils": "pnpm -F bits-ui test"
},
"keywords": [],
"author": "Hunter Johnston <https://github.com/huntabyte>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@eslint/js": "^9.27.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-svelte": "^3.9.0",
"globals": "^16.2.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.33.2",
"svelte-eslint-parser": "^1.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"wrangler": "^4.16.1"
},
"type": "module",
"engines": {
"pnpm": ">=9.0.0",
"node": ">=18"
},
"packageManager": "pnpm@9.14.4",
"private": true,
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}