|
29 | 29 | "./package.json": "./package.json" |
30 | 30 | }, |
31 | 31 | "scripts": { |
| 32 | + "compile": "tsc --build", |
32 | 33 | "build": "npm run build:esm && npm run build:cjs", |
33 | 34 | "build:esm": "tsc -p tsconfig.build.json", |
34 | 35 | "build:cjs": "node -e \"require('node:fs').rmSync('dist-cjs', { recursive: true, force: true })\" && tsc -p tsconfig.build.cjs.json && node scripts/write-cjs-package.mjs", |
35 | | - "typecheck": "tsc --noEmit", |
36 | | - "lint": "eslint .", |
| 36 | + "test:types": "tsc --noEmit", |
| 37 | + "typecheck": "npm run test:types", |
| 38 | + "test:eslint": "eslint .", |
| 39 | + "lint": "npm run test:eslint", |
37 | 40 | "lint:fix": "eslint . --fix", |
38 | 41 | "format": "prettier --write .", |
39 | 42 | "format:check": "prettier --check .", |
40 | | - "test": "vitest run", |
41 | | - "test:watch": "vitest", |
| 43 | + "test:lib": "vitest run", |
| 44 | + "test": "npm run test:lib", |
| 45 | + "test:lib:dev": "vitest", |
| 46 | + "test:watch": "npm run test:lib:dev", |
42 | 47 | "package:check": "node scripts/check-package.mjs", |
43 | 48 | "package:smoke:cjs-types": "node scripts/check-cjs-types-smoke.mjs", |
44 | | - "package:build": "npm run build && publint --strict && attw --pack && npm run package:smoke:cjs-types", |
| 49 | + "test:build": "publint --strict && attw --pack && npm run package:smoke:cjs-types", |
| 50 | + "package:build": "npm run build && npm run test:build", |
45 | 51 | "measure:bundle": "npm run build && node scripts/measure-bundle.mjs", |
46 | 52 | "measure:bundle:raw": "node scripts/measure-bundle.mjs", |
47 | 53 | "perf:l3": "npm run build && node scripts/l3-stress.mjs", |
|
84 | 90 | }, |
85 | 91 | "dependencies": { |
86 | 92 | "@lit/context": "^1.1.6", |
87 | | - "@tanstack/query-core": "^5.90.0", |
| 93 | + "@tanstack/query-core": "workspace:*", |
88 | 94 | "lit": "^3.3.1" |
89 | 95 | }, |
90 | 96 | "peerDependencies": { |
|
0 commit comments