-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 KB
/
package.json
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
34
35
36
37
38
39
40
{
"name": "buttery",
"version": "1.0.1",
"description": "A much needed CLI that helps manage setup boilerplate for common projects and utility sets for TS development projects",
"type": "module",
"private": true,
"workspaces": {
"packages": [
"./packages/*"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/drewdecarme/buttery-tools.git"
},
"author": "Drew DeCarme ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/drewdecarme/buttery-tools/issues"
},
"homepage": "https://github.com/drewdecarme/buttery-tools#readme",
"packageManager": "[email protected]",
"scripts": {
"package:version": "yarn monoweave version",
"build": "turbo build",
"release": "yarn monoweave --config-file monoweave.config.json",
"clean": "npx rimraf ./**/node_modules && npx rimraf ./**/dist"
},
"resolutions": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.27.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@monoweave/cli": "^1.11.0",
"@monoweave/plugin-github": "^2.8.0",
"turbo": "2.3.3"
}
}