25 lines
611 B
JSON
25 lines
611 B
JSON
{
|
|
"name": "root",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"test": "cd test && bun dev",
|
|
"build": "turbo run build && cp packages/web/dist/index.js test/public/zalvena.js",
|
|
"format": "prettier --write \"**/*.{ts,tsx,json}\""
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "3.5.1",
|
|
"tsup": "8.3.6",
|
|
"turbo": "2.4.2",
|
|
"@types/bun": "^1.2.2"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"tabWidth": 4,
|
|
"printWidth": 120
|
|
},
|
|
"packageManager": "bun@1.2.2"
|
|
}
|