-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 786 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
{
"name": "react-things",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"dev": "npm run dev -w demo",
"build": "npm run build -w @mickyballadelli/react-things && npm run build -w demo",
"build:ui": "npm run build -w @mickyballadelli/react-things",
"build:demo": "npm run build -w demo",
"bump:patch": "npm version patch -w @mickyballadelli/react-things --no-git-tag-version",
"bump:minor": "npm version minor -w @mickyballadelli/react-things --no-git-tag-version",
"bump:major": "npm version major -w @mickyballadelli/react-things --no-git-tag-version"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.0.0",
"typescript": "^5.9.0",
"vite": "^7.0.0"
}
}