34 lines
901 B
JSON
34 lines
901 B
JSON
{
|
|
"name": "ulthar-framework",
|
|
"packageManager": "yarn@4.4.1",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/**/*",
|
|
"apps/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.10.0",
|
|
"@types/eslint": "^9.6.1",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^9.10.0",
|
|
"husky": "^9.1.6",
|
|
"lint-staged": "^15.2.10",
|
|
"prettier": "^3.3.3",
|
|
"tsx": "^4.19.1",
|
|
"typescript": "^5.6.2",
|
|
"typescript-eslint": "^8.6.0",
|
|
"zx": "^8.1.7"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint . --fix --report-unused-disable-directives",
|
|
"format": "prettier --write .",
|
|
"test": "yarn workspaces foreach -vvpA run test --run --clearScreen false",
|
|
"build": "yarn workspaces foreach -vvpA --topological-dev run build",
|
|
"add-package": "tsx ./scripts/add-package.ts",
|
|
"postinstall": "husky"
|
|
}
|
|
}
|