update misskey-js to the new templates

This commit is contained in:
Hazelnoot 2025-10-07 00:39:35 -04:00
parent b25eb703ea
commit 4e30986cda
32 changed files with 258 additions and 409 deletions

View file

@ -8,17 +8,17 @@
"types": "./built/index.d.ts",
"scripts": {
"clean": "node scripts/clean.mjs",
"build": "tsc -p tsconfig.lib.json && node scripts/post-build.mjs",
"rebuild": "pnpm clean && pnpm build",
"build": "tsc -p src/tsconfig.json && node scripts/post-build.mjs",
"rebuild": "pnpm run clean && pnpm run build",
"tsd": "tsd --types \"./temp/built/src/index.d.ts\" --files \"./temp/built/test-d/**/*.ts\"",
"api": "pnpm api-extractor run --local --verbose",
"api-prod": "pnpm api-extractor run --verbose",
"eslint": "eslint --quiet --cache -c eslint.config.js .",
"typecheck-all": "pnpm run --no-bail typecheck:lib && pnpm run --no-bail typecheck:test && pnpm run --no-bail typecheck:test-d && pnpm run --no-bail typecheck:scripts",
"typecheck": "pnpm run typecheck:lib && pnpm run typecheck:test && pnpm run typecheck:test-d && pnpm run typecheck:scripts",
"typecheck:lib": "tsc -p tsconfig.lib.json --noEmit",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit",
"typecheck:test-d": "tsc -p tsconfig.test-d.json --noEmit",
"typecheck:lib": "tsc -p src/tsconfig.json --noEmit",
"typecheck:test": "tsc -p test/tsconfig.json --noEmit",
"typecheck:test-d": "tsc -p test-d/tsconfig.json --noEmit",
"typecheck:scripts": "tsc -p tsconfig.scripts.json --noEmit",
"lint": "pnpm typecheck && pnpm eslint",
"jest": "node --no-experimental-require-module --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --coverage --detectOpenHandles",