-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
40
41
42
43
44
45
{
"name": "bmates",
"version": "0.0.4",
"description": "",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "pnpm -F @bmates/studio run dev",
"build": "pnpm --filter @bmates/renderer build && pnpm --filter @bmates/editor build && pnpm --filter @bmates/studio build",
"publish": "pnpm --filter @bmates/renderer publish --access public && pnpm --filter @bmates/editor publish --access public && pnpm --filter @bmates/studio publish --access public",
"editor": "pnpm -F @bmates/editor",
"renderer": "pnpm -F @bmates/renderer",
"studio": "pnpm -F @bmates/studio",
"dev:docs": "pnpm -F bmates-docs run dev",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.9.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.6",
"eslint": "^9.9.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.8",
"prettier": "3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.0",
"vite-plugin-dts": "^3.7.1",
"vite-tsconfig-paths": "^4.2.2"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"keywords": [],
"author": "",
"license": "ISC"
}