You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
ddb7222b66
Each workspace package was still pinning `typescript: ~5.5.x` or `~5.8.2` in its own devDependencies even though the root bumped to 6.0.3 in 60b1143. The pins were dead (yarn 1 hoists from root) but they're misleading when reading a single package.json. Bring them all to `^6.0.3` to match the root. Other: - @thumbmarkjs/thumbmarkjs 1.8.1 → 1.9.0 (root + communication package) - yarn.lock regenerated from a clean install (vitest 4 hoisting was flaking on the patch vite bump; reverted vite to ^8.0.10) Adds CLAUDE.md at the repo root: short project context for future sessions — stack, the 12-workspace layout, the React-friendly v2.1.0 additions (`subscribe()`, `subscribeMessage()`, snapshot getters), build scripts, and known gotchas (`SessionDataManager.getUserData` does NOT exist; sendChat* expects 3 args; dispatchEvent is sync).
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "@nitrots/nitro-renderer",
|
|
"description": "Javascript library for rendering Nitro in the browser using PixiJS",
|
|
"version": "2.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/duckietm/Nitro_Render_V3.git"
|
|
},
|
|
"license": "GPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/duckietm/Nitro_Render_V3/issues"
|
|
},
|
|
"homepage": "https://github.com/duckietm/Nitro_Render_V3",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"compile": "tsc --project ./tsconfig.json --noEmit false",
|
|
"compile:fast": "tsgo --project ./tsconfig.json --noEmit",
|
|
"eslint": "eslint ./src ./packages/*/src",
|
|
"eslint-fix": "eslint ./src --fix",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"main": "./index",
|
|
"dependencies": {
|
|
"@thumbmarkjs/thumbmarkjs": "^1.9.0",
|
|
"gifuct-js": "^2.1.2",
|
|
"howler": "^2.2.4",
|
|
"pako": "^2.1.0",
|
|
"pixi-filters": "^6.1.5",
|
|
"pixi.js": "^8.18.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.13.0",
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
"@types/howler": "^2.2.11",
|
|
"@types/node": "^20.14.12",
|
|
"@types/pako": "^2.0.3",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"eslint": "^9.8.0",
|
|
"jsdom": "^27.4.0",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260510.1",
|
|
"tslib": "^2.6.3",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.26.1",
|
|
"vite": "^8.0.10",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|