-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.89 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/pacer.git"
},
"packageManager": "pnpm@10.29.3",
"type": "module",
"scripts": {
"build": "nx affected --skip-nx-cache --targets=build --exclude=examples/** && size-limit && pnpm run",
"build:all": "nx run-many --targets=build --exclude=examples/** && size-limit && pnpm run",
"build:core": "nx run-many --targets=build --projects=packages/pacer,packages/persister && size-limit && pnpm run",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format",
"clean": "find . -name 'dist' -type d -prune -exec rm -rf {} +",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf {} +",
"clean:all": "pnpm run clean && pnpm run clean:node_modules",
"copy:readme": "cp README.md packages/pacer/README.md && cp README.md packages/pacer-devtools/README.md && cp README.md packages/pacer-lite/README.md && cp README.md packages/react-pacer/README.md && cp README.md packages/react-pacer-devtools/README.md && cp README.md packages/solid-pacer/README.md && cp README.md packages/solid-pacer-devtools/README.md && cp README.md packages/preact-pacer-devtools/README.md && cp README.md packages/angular-pacer/README.md",
"dev": "pnpm run watch",
"format": "prettier --experimental-cli --ignore-unknown '**/*' --write",
"generate-docs": "node scripts/generate-docs.ts && pnpm run copy:readme",
"lint:fix": "nx affected --target=lint:fix --exclude=examples/**",
"lint:fix:all": "nx run-many --targets=lint --fix",
"size": "size-limit",
"test": "pnpm run test:ci",
"test:ci": "nx run-many --targets=test:eslint,test:sherif,test:knip,test:docs,test:lib,test:types,build",
"test:docs": "node scripts/verify-links.ts",
"test:eslint": "nx affected --target=test:eslint --exclude=examples/**",
"test:knip": "knip",
"test:lib": "nx affected --targets=test:lib --exclude=examples/**",
"test:lib:dev": "pnpm test:lib && nx watch --all -- pnpm test:lib",
"test:pr": "nx affected --targets=test:eslint,test:sherif,test:knip,test:docs,test:lib,test:types,build",
"test:sherif": "sherif",
"test:types": "nx affected --targets=test:types --exclude=examples/**",
"watch": "pnpm run build:all && nx watch --all -- pnpm run build:all"
},
"nx": {
"includedScripts": [
"test:docs",
"test:knip",
"test:sherif"
]
},
"size-limit": [
{
"path": "packages/pacer/dist/index.js",
"limit": "8 KB"
}
],
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@faker-js/faker": "^10.3.0",
"@size-limit/preset-small-lib": "^12.0.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/eslint-config": "0.4.0",
"@tanstack/typedoc-config": "0.3.3",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.2.3",
"eslint": "^9.39.2",
"eslint-plugin-unused-imports": "^4.4.1",
"happy-dom": "^20.6.1",
"knip": "^5.83.1",
"markdown-link-extractor": "^4.0.3",
"nx": "^22.5.1",
"premove": "^4.0.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"publint": "^0.3.17",
"sherif": "^1.10.0",
"size-limit": "^12.0.0",
"tinyglobby": "^0.2.15",
"tsdown": "^0.20.3",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"overrides": {
"@tanstack/angular-pacer": "workspace:*",
"@tanstack/pacer": "workspace:*",
"@tanstack/pacer-devtools": "workspace:*",
"@tanstack/pacer-lite": "workspace:*",
"@tanstack/preact-pacer": "workspace:*",
"@tanstack/preact-pacer-devtools": "workspace:*",
"@tanstack/react-pacer": "workspace:*",
"@tanstack/react-pacer-devtools": "workspace:*",
"@tanstack/solid-pacer": "workspace:*",
"@tanstack/solid-pacer-devtools": "workspace:*"
}
}