-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.57 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.57 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
{
"name": "@tanstack/config",
"version": "0.22.0",
"description": "All-in-one config used by TanStack projects.",
"author": "tannerlinsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/config.git",
"directory": "packages/config"
},
"homepage": "https://tanstack.com/config",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"scripts": {
"test:types": "tsc",
"test:eslint": "oxlint -c ../../oxlint.json && eslint ./src",
"test:build": "publint --strict",
"build": "vite build"
},
"type": "module",
"exports": {
"./eslint": {
"import": {
"types": "./dist/esm/eslint.d.ts",
"default": "./dist/esm/eslint.js"
}
},
"./publish": {
"import": {
"types": "./dist/esm/publish.d.ts",
"default": "./dist/esm/publish.js"
}
},
"./typedoc": {
"import": {
"types": "./dist/esm/typedoc.d.ts",
"default": "./dist/esm/typedoc.js"
}
},
"./vite": {
"import": {
"types": "./dist/esm/vite.d.ts",
"default": "./dist/esm/vite.js"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@tanstack/eslint-config": "workspace:*",
"@tanstack/publish-config": "workspace:*",
"@tanstack/typedoc-config": "workspace:*",
"@tanstack/vite-config": "workspace:*"
},
"devDependencies": {
"vite": "catalog:"
}
}