-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 867 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 867 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
31
{
"name": "issy-monorepo",
"private": true,
"packageManager": "bun@1.3.8",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/miketromba/issy.git"
},
"bugs": {
"url": "https://github.com/miketromba/issy/issues"
},
"homepage": "https://github.com/miketromba/issy#readme",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"publish:all": "turbo run lint build && npm publish --access public -w @miketromba/issy-core && npm publish --access public -w @miketromba/issy-app && npm publish --access public -w issy",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"bun-types": "^1.3.8",
"husky": "^9.1.7",
"turbo": "^2.0.0"
}
}