-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.13 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": "oh-my-cv",
"private": true,
"packageManager": "pnpm@8.5.1",
"scripts": {
"build": "pnpm --filter=site build",
"build:pkg": "pnpm -r --stream build:pkg",
"build-fast:pkg": "pnpm -r --stream build-fast:pkg",
"dev": "pnpm --filter=site dev",
"lint": "eslint --ext .js,.ts,.vue ./",
"release": "pnpm build:pkg && pnpm build",
"release:pkg": "pnpm release:pkg:check && pnpm release:pkg:version && pnpm -r publish",
"release:pkg:check": "pnpm lint && pnpm build:pkg",
"release:pkg:version": "bumpp package.json packages/*/package.json --commit \"build: publish v%s\" --all --tag --push",
"serve": "pnpm --filter=site serve"
},
"prettier": {
"trailingComma": "none"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"bumpp": "^9.1.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.14.1",
"pnpm": "^8.5.1",
"prettier": "^2.8.8",
"taze": "^0.10.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"version": "0.1.0"
}