-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
35 lines (35 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
{
"name": "baklavajs-monorepo",
"private": true,
"type": "module",
"scripts": {
"playground": "cd packages/renderer-vue && yarn run dev",
"lint": "eslint \"packages/*/src/**/*.{ts,vue}\"",
"build": "lerna run build",
"test": "lerna run test",
"clean": "rimraf ./packages/*/dist && rimraf ./packages/full/lib",
"generate-api-docs": "typedoc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"version": "yarn install && git stage yarn.lock"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.29.1",
"lerna": "^8.1.8",
"mermaid": "^11.3.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitepress": "^1.4.1",
"vue-eslint-parser": "^9.4.3"
},
"packageManager": "[email protected]"
}