-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
31 lines (31 loc) · 1.01 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
{
"name": "markdown-resume",
"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.6",
"@renovamen/prettier-config": "^0.1.6",
"bumpp": "^9.4.0",
"eslint": "^9.0.0",
"pnpm": "^8.15.6",
"prettier": "^3.2.5",
"taze": "^0.13.3",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"version": "0.1.1"
}