|
1 | 1 | { |
2 | | - "name": "root", |
3 | | - "private": true, |
4 | | - "repository": { |
5 | | - "type": "git", |
6 | | - "url": "git+https://github.com/TanStack/devtools.git" |
7 | | - }, |
8 | | - "packageManager": "pnpm@10.24.0", |
9 | | - "type": "module", |
10 | | - "scripts": { |
11 | | - "build": "nx affected --targets=build --exclude=examples/** && size-limit", |
12 | | - "build:all": "nx run-many --targets=build --exclude=examples/** && size-limit", |
13 | | - "build:core": "nx build @tanstack/devtools && size-limit", |
14 | | - "changeset": "changeset", |
15 | | - "changeset:publish": "changeset publish", |
16 | | - "changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format", |
17 | | - "clean": "find . -name 'dist' -type d -prune -exec rm -rf {} +", |
18 | | - "clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf {} +", |
19 | | - "clean:all": "pnpm run clean && pnpm run clean:node_modules", |
20 | | - "dev": "pnpm run watch", |
21 | | - "format": "prettier --experimental-cli --ignore-unknown '**/*' --write", |
22 | | - "generate-docs": "node scripts/generate-docs.ts", |
23 | | - "lint:fix": "nx affected --target=lint:fix --exclude=examples/**", |
24 | | - "lint:fix:all": "pnpm run format && nx run-many --targets=lint --fix", |
25 | | - "preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm", |
26 | | - "size": "size-limit", |
27 | | - "test": "pnpm run test:ci", |
28 | | - "test:build": "nx affected --target=test:build --exclude=examples/**", |
29 | | - "test:ci": "nx run-many --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build", |
30 | | - "test:docs": "node scripts/verify-links.ts", |
31 | | - "test:eslint": "nx affected --target=test:eslint --exclude=examples/**", |
32 | | - "test:knip": "knip", |
33 | | - "test:lib": "nx affected --targets=test:lib --exclude=examples/**", |
34 | | - "test:lib:dev": "pnpm test:lib && nx watch --all -- pnpm test:lib", |
35 | | - "test:pr": "nx affected --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build", |
36 | | - "test:sherif": "sherif", |
37 | | - "test:types": "nx affected --targets=test:types --exclude=examples/**", |
38 | | - "watch": "pnpm run build:all && nx watch --all -- pnpm run build:all" |
39 | | - }, |
40 | | - "nx": { |
41 | | - "includedScripts": [ |
42 | | - "test:docs", |
43 | | - "test:knip", |
44 | | - "test:sherif" |
45 | | - ] |
46 | | - }, |
47 | | - "size-limit": [ |
48 | | - { |
49 | | - "path": "packages/devtools/dist/index.js", |
50 | | - "limit": "60 KB" |
51 | | - }, |
52 | | - { |
53 | | - "path": "packages/event-bus-client/dist/esm/plugin.js", |
54 | | - "limit": "1.2 KB" |
55 | | - } |
56 | | - ], |
57 | | - "devDependencies": { |
58 | | - "@changesets/cli": "^2.29.7", |
59 | | - "@faker-js/faker": "^9.9.0", |
60 | | - "@size-limit/preset-small-lib": "^11.2.0", |
61 | | - "@svitejs/changesets-changelog-github-compact": "^1.2.0", |
62 | | - "@tanstack/eslint-config": "0.3.2", |
63 | | - "@tanstack/intent": "^0.0.14", |
64 | | - "@tanstack/typedoc-config": "0.2.1", |
65 | | - "@tanstack/vite-config": "0.2.1", |
66 | | - "@testing-library/jest-dom": "^6.8.0", |
67 | | - "@types/node": "^22.15.2", |
68 | | - "eslint": "^9.36.0", |
69 | | - "eslint-plugin-unused-imports": "^4.2.0", |
70 | | - "jsdom": "^27.0.0", |
71 | | - "knip": "^5.64.0", |
72 | | - "markdown-link-extractor": "^4.0.2", |
73 | | - "nx": "22.1.3", |
74 | | - "premove": "^4.0.0", |
75 | | - "prettier": "^3.8.1", |
76 | | - "prettier-plugin-svelte": "^3.4.1", |
77 | | - "publint": "^0.3.13", |
78 | | - "sherif": "^1.7.0", |
79 | | - "size-limit": "^11.2.0", |
80 | | - "tinyglobby": "^0.2.15", |
81 | | - "typescript": "~5.9.2", |
82 | | - "vite": "^7.1.7", |
83 | | - "vitest": "^3.2.4" |
84 | | - }, |
85 | | - "overrides": { |
86 | | - "@tanstack/devtools": "workspace:*", |
87 | | - "@tanstack/react-devtools": "workspace:*", |
88 | | - "@tanstack/preact-devtools": "workspace:*", |
89 | | - "@tanstack/solid-devtools": "workspace:*", |
90 | | - "@tanstack/devtools-vite": "workspace:*" |
91 | | - }, |
92 | | - "files": [ |
93 | | - "skills", |
94 | | - "bin", |
95 | | - "!skills/_artifacts" |
96 | | - ], |
97 | | - "bin": { |
98 | | - "intent": "./bin/intent.js" |
99 | | - } |
| 2 | + "name": "root", |
| 3 | + "private": true, |
| 4 | + "repository": { |
| 5 | + "type": "git", |
| 6 | + "url": "git+https://github.com/TanStack/devtools.git" |
| 7 | + }, |
| 8 | + "packageManager": "pnpm@10.24.0", |
| 9 | + "type": "module", |
| 10 | + "scripts": { |
| 11 | + "build": "nx affected --targets=build --exclude=examples/** && size-limit", |
| 12 | + "build:all": "nx run-many --targets=build --exclude=examples/** && size-limit", |
| 13 | + "build:core": "nx build @tanstack/devtools && size-limit", |
| 14 | + "changeset": "changeset", |
| 15 | + "changeset:publish": "changeset publish", |
| 16 | + "changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format", |
| 17 | + "clean": "find . -name 'dist' -type d -prune -exec rm -rf {} +", |
| 18 | + "clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf {} +", |
| 19 | + "clean:all": "pnpm run clean && pnpm run clean:node_modules", |
| 20 | + "dev": "pnpm run watch", |
| 21 | + "format": "prettier --experimental-cli --ignore-unknown '**/*' --write", |
| 22 | + "generate-docs": "node scripts/generate-docs.ts", |
| 23 | + "lint:fix": "nx affected --target=lint:fix --exclude=examples/**", |
| 24 | + "lint:fix:all": "pnpm run format && nx run-many --targets=lint --fix", |
| 25 | + "preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm", |
| 26 | + "size": "size-limit", |
| 27 | + "test": "pnpm run test:ci", |
| 28 | + "test:build": "nx affected --target=test:build --exclude=examples/**", |
| 29 | + "test:ci": "nx run-many --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build", |
| 30 | + "test:docs": "node scripts/verify-links.ts", |
| 31 | + "test:eslint": "nx affected --target=test:eslint --exclude=examples/**", |
| 32 | + "test:knip": "knip", |
| 33 | + "test:lib": "nx affected --targets=test:lib --exclude=examples/**", |
| 34 | + "test:lib:dev": "pnpm test:lib && nx watch --all -- pnpm test:lib", |
| 35 | + "test:pr": "nx affected --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build", |
| 36 | + "test:sherif": "sherif", |
| 37 | + "test:types": "nx affected --targets=test:types --exclude=examples/**", |
| 38 | + "watch": "pnpm run build:all && nx watch --all -- pnpm run build:all" |
| 39 | + }, |
| 40 | + "nx": { |
| 41 | + "includedScripts": [ |
| 42 | + "test:docs", |
| 43 | + "test:knip", |
| 44 | + "test:sherif" |
| 45 | + ] |
| 46 | + }, |
| 47 | + "size-limit": [ |
| 48 | + { |
| 49 | + "path": "packages/devtools/dist/index.js", |
| 50 | + "limit": "60 KB" |
| 51 | + }, |
| 52 | + { |
| 53 | + "path": "packages/event-bus-client/dist/esm/plugin.js", |
| 54 | + "limit": "1.2 KB" |
| 55 | + } |
| 56 | + ], |
| 57 | + "devDependencies": { |
| 58 | + "@changesets/cli": "^2.29.7", |
| 59 | + "@faker-js/faker": "^9.9.0", |
| 60 | + "@size-limit/preset-small-lib": "^11.2.0", |
| 61 | + "@svitejs/changesets-changelog-github-compact": "^1.2.0", |
| 62 | + "@tanstack/eslint-config": "0.3.2", |
| 63 | + "@tanstack/intent": "^0.0.14", |
| 64 | + "@tanstack/typedoc-config": "0.2.1", |
| 65 | + "@tanstack/vite-config": "0.2.1", |
| 66 | + "@testing-library/jest-dom": "^6.8.0", |
| 67 | + "@types/node": "^22.15.2", |
| 68 | + "eslint": "^9.36.0", |
| 69 | + "eslint-plugin-unused-imports": "^4.2.0", |
| 70 | + "jsdom": "^27.0.0", |
| 71 | + "knip": "^5.64.0", |
| 72 | + "markdown-link-extractor": "^4.0.2", |
| 73 | + "nx": "22.1.3", |
| 74 | + "premove": "^4.0.0", |
| 75 | + "prettier": "^3.8.1", |
| 76 | + "prettier-plugin-svelte": "^3.4.1", |
| 77 | + "publint": "^0.3.13", |
| 78 | + "sherif": "^1.7.0", |
| 79 | + "size-limit": "^11.2.0", |
| 80 | + "tinyglobby": "^0.2.15", |
| 81 | + "typescript": "~5.9.2", |
| 82 | + "vite": "^7.1.7", |
| 83 | + "vitest": "^3.2.4" |
| 84 | + }, |
| 85 | + "overrides": { |
| 86 | + "@tanstack/devtools": "workspace:*", |
| 87 | + "@tanstack/react-devtools": "workspace:*", |
| 88 | + "@tanstack/preact-devtools": "workspace:*", |
| 89 | + "@tanstack/solid-devtools": "workspace:*", |
| 90 | + "@tanstack/devtools-vite": "workspace:*" |
| 91 | + }, |
| 92 | + "files": [ |
| 93 | + "skills", |
| 94 | + "bin", |
| 95 | + "!skills/_artifacts" |
| 96 | + ], |
| 97 | + "bin": { |
| 98 | + "intent": "./bin/intent.js" |
| 99 | + } |
100 | 100 | } |
0 commit comments