-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
39 lines (39 loc) · 1.08 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
{
"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 -r check",
"ci:publish": "pnpm build:packages && changeset publish",
"dev": "pnpm -r --parallel dev",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm -F bits-ui test"
},
"keywords": [],
"author": "Hunter Johnston <https://github.com/huntabyte>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@huntabyte/eslint-config": "^0.3.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"eslint": "^9.10.0",
"eslint-plugin-svelte": "^2.44.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "0.5.13",
"svelte": "^4.2.9",
"svelte-eslint-parser": "^0.41.1",
"wrangler": "^3.44.0"
},
"type": "module",
"engines": {
"pnpm": ">=8.7.0",
"node": ">=18"
},
"private": true,
"packageManager": "[email protected]"
}