-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.25 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.25 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
29
30
31
32
33
{
"name": "@gjsify/vite",
"type": "module",
"private": true,
"author": "Pascal Garber <pascal@mailfreun.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gjsify/vite.git"
},
"bugs": {
"url": "https://github.com/gjsify/vite/issues"
},
"homepage": "https://github.com/gjsify/vite#readme",
"scripts": {
"build": "yarn workspaces foreach -v --all run build",
"check": "yarn workspaces foreach -v --all run check",
"clear": "yarn workspaces foreach -v --all run clear",
"test": "yarn workspaces foreach -v --all --parallel run test",
"publish:latest": "yarn workspaces foreach -v --all --parallel --no-private npm publish --tolerate-republish --tag latest --access public",
"publish:next": "yarn workspaces foreach -v --all --parallel --no-private npm publish --tolerate-republish --tag next --access public",
"version:patch": "yarn workspaces foreach -v --all --no-private version patch",
"version:minor": "yarn workspaces foreach -v --all --no-private version minor",
"version:major": "yarn workspaces foreach -v --all --no-private version major"
},
"workspaces": [
"packages/*"
],
"packageManager": "yarn@4.9.2",
"devDependencies": {
"typescript": "^5.9.2"
}
}