mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-07 13:15:06 +00:00
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "playground",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"check": "npm run dev:wasm && npm run lint && npm run tsc",
|
|
"dev:wasm": "npm run dev:wasm --workspace ty-playground && npm run dev:wasm --workspace ruff-playground",
|
|
"dev:build": "npm run dev:build --workspace ty-playground && npm run dev:build --workspace ruff-playground",
|
|
"fmt": "prettier --cache -w .",
|
|
"fmt:check": "prettier --cache --check .",
|
|
"lint": "eslint --cache --ext .ts,.tsx ruff/src ty/src",
|
|
"tsc": "tsc"
|
|
},
|
|
"workspaces": [
|
|
"ty",
|
|
"ruff",
|
|
"shared"
|
|
],
|
|
"prettier": {
|
|
"trailingComma": "all"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.21.0",
|
|
"@tailwindcss/vite": "^4.0.14",
|
|
"@types/react": "^19.0.11",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react-swc": "^3.0.0",
|
|
"eslint": "^9.22.0",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-react": "^7.31.11",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"prettier": "^3.5.3",
|
|
"tailwindcss": "^4.0.14",
|
|
"typescript": "^5.8.2",
|
|
"typescript-eslint": "^8.26.1",
|
|
"vite": "^7.0.0",
|
|
"wasm-pack": "^0.13.1"
|
|
}
|
|
}
|