-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.13 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.13 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tanstack/store.git"
},
"packageManager": "pnpm@10.33.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.30.0",
"@eslint-react/eslint-plugin": "^4.2.3",
"@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",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.2",
"@vitest/coverage-istanbul": "^4.1.4",
"eslint": "^10.2.0",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^29.0.2",
"knip": "^6.3.1",
"markdown-link-extractor": "^4.0.3",
"nx": "22.6.4",
"premove": "^4.0.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"publint": "^0.3.18",
"sherif": "^1.11.1",
"tinyglobby": "^0.2.16",
"tsdown": "^0.21.7",
"typescript": "6.0.2",
"typescript56": "npm:typescript@5.6",
"typescript57": "npm:typescript@5.7",
"typescript58": "npm:typescript@5.8",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"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": {
"packageExtensions": {
"@vue/composition-api": {
"peerDependencies": {
"vue": ">= 2.5"
}
}
}
},
"sherif": {
"ignorePackage": [
"./examples/*"
]
}
}