-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.03 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
{
"name": "@melt-ui/monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "pnpm sync && pnpm --parallel dev",
"build": "pnpm -r build",
"build:packages": "pnpm -F \"./packages/**\" --parallel build",
"build:content": "pnpm -F \"./sites/**\" --parallel build:content",
"ci:publish": "pnpm build:packages && changeset publish",
"test": "pnpm -r test",
"format": "prettier --write .",
"check": "pnpm -r check",
"sync": "pnpm --parallel sync",
"postinstall": "pnpm -r sync",
"lint": "eslint . --ignore-pattern 'packages/**' && pnpm -r lint",
"lint:fix": "eslint . --fix --ignore-pattern 'packages/**' && pnpm -r lint:fix",
"lint:inspect": "eslint --inspect-config"
},
"devDependencies": {
"@antfu/eslint-config": "^2.12.1",
"@huntabyte/eslint-plugin": "^0.0.1",
"@types/eslint": "8.56.7",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^9.0.0",
"eslint-plugin-svelte": "2.36.0-next.13",
"svelte-eslint-parser": "^0.33.1"
}
}