-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.15 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.15 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
27
28
{
"name": "react-simple-phone-input",
"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.0.9",
"prettier": "^3.7.4",
"turbo": "^2.7.5",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"tsx": "^4.21.0"
}
}