lage/package.json

56 строки
1.8 KiB
JSON

{
"name": "@lage-run/lage-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/lage.git"
},
"workspaces": {
"packages": [
"packages/*",
"scripts"
]
},
"scripts": {
"build": "lage transpile types build bundle",
"watch": "lage transpile --verbose --unstable-watch",
"change": "beachball change",
"checkchange": "beachball check",
"release": "beachball publish -y --tag latest",
"test": "lage test --verbose",
"lint": "lage lint",
"decks:build": "npm exec --package=@marp-team/marp-cli -- marp -I decks --pdf -o decks/dist",
"docs": "yarn --cwd docs start",
"docs:install": "yarn --cwd docs",
"docs:build": "yarn --cwd docs build",
"docs:test": "yarn --cwd docs build",
"gh-pages": "gh-pages",
"format": "prettier --config .prettierrc packages/**/*.ts **/*.json --write --ignore-path .gitignore",
"format:check": "prettier --config .prettierrc packages/**/*.ts **/*.json --check --ignore-path .gitignore",
"prepare": "husky install",
"postinstall": "patch-package"
},
"devDependencies": {
"@types/jest": "29.4.0",
"@types/node": "16.18.3",
"beachball": "2.31.8",
"fast-glob": "3.2.12",
"gh-pages": "4.0.0",
"husky": "8.0.3",
"lage-npm": "npm:lage@2.0.0",
"lint-staged": "13.1.2",
"patch-package": "6.5.1",
"prettier": "2.8.4",
"syncpack": "8.5.14"
},
"resolutions": {
"workspace-tools": "^0.29.0",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.gitignore": "prettier --config .prettierrc --write --ignore-path .gitignore",
"*.ts": "prettier --config .prettierrc --write --ignore-path .gitignore",
"*.json": "prettier --config .prettierrc --write --ignore-path .gitignore"
}
}