-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.22 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.22 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
91
92
93
94
95
96
97
98
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tanstack/store.git"
},
"packageManager": "pnpm@10.24.0",
"type": "module",
"scripts": {
"clean": "pnpm --filter \"./packages/**\" run clean",
"test": "pnpm run test:ci",
"test:pr": "nx affected --targets=test:sherif,test:knip,test:eslint,test:lib,test:types,test:build,build",
"test:ci": "nx run-many --targets=test:sherif,test:knip,test:eslint,test:lib,test:types,test:build,build",
"test:eslint": "nx affected --target=test:eslint",
"test:format": "pnpm run prettier --check",
"test:sherif": "sherif",
"test:lib": "nx affected --target=test:lib --exclude=examples/**",
"test:lib:dev": "pnpm run test:lib && nx watch --all -- pnpm run test:lib",
"test:build": "nx affected --target=test:build --exclude=examples/**",
"test:types": "nx affected --target=test:types --exclude=examples/**",
"test:knip": "knip",
"test:docs": "node scripts/verify-links.ts",
"build": "nx affected --target=build --exclude=examples/**",
"build:all": "nx run-many --target=build --exclude=examples/**",
"watch": "pnpm run build:all && nx watch --all -- pnpm run build:all",
"dev": "pnpm run watch",
"format": "prettier --experimental-cli --ignore-unknown '**/*' --write",
"generate-docs": "node scripts/generate-docs.ts",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format"
},
"nx": {
"includedScripts": [
"test:docs",
"test:knip",
"test:sherif"
]
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint-react/eslint-plugin": "^1.53.1",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/eslint-config": "0.3.4",
"@tanstack/typedoc-config": "0.3.1",
"@tanstack/vite-config": "0.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.2.1",
"@vitest/coverage-istanbul": "^4.0.18",
"eslint": "^9.37.0",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^25.0.1",
"knip": "^5.70.1",
"markdown-link-extractor": "^4.0.2",
"nx": "22.1.0",
"premove": "^4.0.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"publint": "^0.3.15",
"sherif": "^1.9.0",
"tinyglobby": "^0.2.15",
"typescript": "5.9.3",
"typescript56": "npm:typescript@5.6",
"typescript57": "npm:typescript@5.7",
"typescript58": "npm:typescript@5.8",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vue": "^3.5.22"
},
"overrides": {
"@tanstack/angular-store": "workspace:*",
"@tanstack/preact-store": "workspace:*",
"@tanstack/react-store": "workspace:*",
"@tanstack/solid-store": "workspace:*",
"@tanstack/store": "workspace:*",
"@tanstack/svelte-store": "workspace:*",
"@tanstack/vue-store": "workspace:*"
},
"pnpm": {
"overrides": {
"@types/node": "25.2.1"
},
"packageExtensions": {
"@vue/composition-api": {
"peerDependencies": {
"vue": ">= 2.5"
}
}
}
},
"sherif": {
"ignorePackage": [
"./examples/*"
]
}
}