-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 909 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 909 Bytes
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
{
"name": "blog",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.14.0",
"description": "ThinkTapFast Blog",
"scripts": {
"dev": "pnpm --parallel -r run dev",
"build": "pnpm -r run build",
"lint": "eslint .",
"fix": "eslint --fix . && prettier --write .",
"prepublishOnly": "pnpm run build",
"typecheck": "tsc -b",
"change": "changeset",
"ci:publish": "pnpm run build && pnpm publish --access public -r --no-git-checks --tag latest",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@ocavue/eslint-config": "^3.2.0",
"@ocavue/tsconfig": "^0.3.7",
"@types/node": "^20.17.30",
"eslint": "^9.30.1",
"pkg-pr-new": "^0.0.54",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.8.3"
}
}