-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.11 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.11 KB
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
{
"name": "ritext",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"md": "tsx scripts/create-md.ts",
"pub:patch": "pnpm run md && turbo run build --filter=./packages/react && pnpm -C packages/react exec npm version patch --no-git-tag-version && pnpm -C packages/react exec npm publish --access public",
"pub:minor": "pnpm run md && turbo run build --filter=./packages/react && pnpm -C packages/react exec npm version minor --no-git-tag-version && pnpm -C packages/react exec npm publish --access public",
"pub:major": "pnpm run md && turbo run build --filter=./packages/react && pnpm -C packages/react exec npm version major --no-git-tag-version && pnpm -C packages/react exec npm publish --access public"
},
"devDependencies": {
"@types/node": "^25.1.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"turbo": "^2.8.1",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=18"
}
}