-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.65 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
46
47
48
49
50
51
52
{
"version": "0.0.4",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"dev:play": "turbo run build --filter=./packages/* && turbo run dev --filter=play",
"dev:docs": "turbo run build --filter=./packages/* && turbo run dev --filter=docs",
"build:docs": "turbo run build --filter=docs",
"build:grid": "turbo run build --filter=@suite-kit/grid",
"build:packages": "pnpm run type:src && turbo run build --filter=./packages/* && pnpm run mv-type",
"build:el-protable": "turbo run build --filter=@suite-kit/el-protable",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"publish-packages": "pnpm run build:packages && changeset && changeset version && changeset publish",
"release": "standard-version",
"cz": " git add . && czg",
"clean:type": "rimraf ./dist",
"gen:type": "vue-tsc -p tsconfig.src.json --composite false --declaration --emitDeclarationOnly",
"type:src": "pnpm run clean:type && pnpm run gen:type",
"mv-type": "tsx ./scripts/moveDTS.ts"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"@types/node": "^20.11.26",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"cz-git": "^1.7.1",
"czg": "^1.7.1",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"rimraf": "^5.0.5",
"sass": "^1.63.6",
"standard-version": "^9.5.0",
"tsx": "^4.7.1",
"turbo": "^1.10.7",
"typescript": "^5.1.6",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.3.1",
"vue-tsc": "^1.8.3"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.26.2",
"vue": "^3.4.21"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}