|
| 1 | +{ |
| 2 | + "name": "prettier-plugin-pywire", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "Prettier plugin for PyWire (.wire) files", |
| 5 | + "type": "module", |
| 6 | + "main": "dist/index.cjs", |
| 7 | + "module": "dist/index.js", |
| 8 | + "exports": { |
| 9 | + ".": { |
| 10 | + "import": "./dist/index.js", |
| 11 | + "require": "./dist/index.cjs" |
| 12 | + } |
| 13 | + }, |
| 14 | + "files": [ |
| 15 | + "dist", |
| 16 | + "LICENSE" |
| 17 | + ], |
| 18 | + "scripts": { |
| 19 | + "build": "node build.mjs && tsc -p tsconfig.json --emitDeclarationOnly", |
| 20 | + "build:dev": "node build.mjs --watch", |
| 21 | + "test": "vitest run", |
| 22 | + "test:watch": "vitest", |
| 23 | + "test:coverage": "vitest run --coverage", |
| 24 | + "lint": "eslint .", |
| 25 | + "lint:fix": "eslint . --fix", |
| 26 | + "format": "prettier --write .", |
| 27 | + "format:check": "prettier --check .", |
| 28 | + "typecheck": "tsc -p tsconfig.json --noEmit", |
| 29 | + "check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test" |
| 30 | + }, |
| 31 | + "dependencies": { |
| 32 | + "@iarna/toml": "^2.2.5", |
| 33 | + "@wasm-fmt/ruff_fmt": "^0.9.0", |
| 34 | + "cosmiconfig": "^9.0.0" |
| 35 | + }, |
| 36 | + "peerDependencies": { |
| 37 | + "prettier": "^3.0.0" |
| 38 | + }, |
| 39 | + "devDependencies": { |
| 40 | + "@eslint/js": "^9.35.0", |
| 41 | + "@types/node": "^20.11.0", |
| 42 | + "@typescript-eslint/eslint-plugin": "^8.43.0", |
| 43 | + "@typescript-eslint/parser": "^8.43.0", |
| 44 | + "@vitest/coverage-v8": "^4.0.17", |
| 45 | + "esbuild": "^0.20.0", |
| 46 | + "eslint": "^9.35.0", |
| 47 | + "globals": "^16.4.0", |
| 48 | + "prettier": "^3.6.2", |
| 49 | + "typescript": "^5.3.3", |
| 50 | + "vitest": "^4.0.17" |
| 51 | + } |
| 52 | +} |
0 commit comments