mirror of https://github.com/astral-sh/ruff
41 lines
1.1 KiB
JSON
41 lines
1.1 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.32.0",
|
|
"@tailwindcss/vite": "4.1.11",
|
|
"@types/react": "19.1.8",
|
|
"@types/react-dom": "19.1.6",
|
|
"@vitejs/plugin-react-swc": "3.11.0",
|
|
"eslint": "9.32.0",
|
|
"eslint-plugin-import": "2.32.0",
|
|
"eslint-plugin-react": "7.37.5",
|
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
"prettier": "3.6.2",
|
|
"tailwindcss": "4.1.11",
|
|
"typescript": "5.8.3",
|
|
"typescript-eslint": "8.38.0",
|
|
"vite": "7.0.8",
|
|
"wasm-pack": "0.13.1"
|
|
}
|
|
}
|