-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.11 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.11 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tanstack/select.git"
},
"packageManager": "pnpm@10.2.1",
"type": "module",
"scripts": {
"build": "nx affected --targets=build --exclude=examples/** && size-limit",
"build:all": "nx run-many --targets=build --exclude=examples/** && size-limit",
"build:core": "nx build @tanstack/select && size-limit",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && pnpm prettier:write",
"clean": "find . -name 'dist' -type d -prune -exec rm -rf {} +",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf {} +",
"dev": "pnpm run watch",
"docs:generate": "node scripts/generateDocs.js",
"format": "pnpm run prettier:write",
"lint:fix": "nx affected --target=lint:fix --exclude=examples/**",
"lint:fix:all": "pnpm run format && nx run-many --targets=lint --fix",
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
"prettier": "prettier --ignore-unknown '**/*'",
"prettier:write": "pnpm run prettier --write",
"size": "size-limit",
"test": "pnpm run test:ci",
"test:build": "nx affected --target=test:build --exclude=examples/**",
"test:ci": "nx run-many --targets=test:format,test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build",
"test:eslint": "nx affected --target=test:eslint --exclude=examples/**",
"test:format": "pnpm run prettier --check",
"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:format,test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,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:knip",
"test:sherif"
]
},
"size-limit": [
{
"path": "packages/select/dist/esm/index.js",
"limit": "6 KB"
}
],
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@faker-js/faker": "^9.7.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/config": "0.18.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/node": "^22.15.2",
"eslint": "^9.25.1",
"eslint-plugin-unused-imports": "^4.1.4",
"jsdom": "^26.1.0",
"knip": "^5.50.5",
"nx": "^20.8.1",
"premove": "^4.0.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"publint": "^0.3.12",
"sherif": "^1.5.0",
"size-limit": "^11.2.0",
"typescript": "5.8.3",
"vite": "^6.3.3",
"vitest": "^3.1.2"
},
"overrides": {
"@tanstack/select": "workspace:*",
"@tanstack/react-select": "workspace:*",
"@tanstack/solid-select": "workspace:*"
}
}