-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "oh-my-cv",
"version": "0.1.1",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"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 .",
"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": "@renovamen/prettier-config",
"devDependencies": {
"@renovamen/eslint-config": "^0.1.7",
"@renovamen/prettier-config": "^0.1.7",
"bumpp": "^9.4.1",
"eslint": "^9.6.0",
"pnpm": "^9.4.0",
"prettier": "^3.3.2",
"taze": "^0.14.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
}
}