-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "@tanstack/publish-config",
"version": "0.2.8",
"description": "Publish script used by TanStack projects.",
"author": "tannerlinsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/config.git",
"directory": "packages/publish-config"
},
"homepage": "https://tanstack.com/config",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"scripts": {
"test:types": "tsc",
"test:eslint": "eslint --concurrency=auto ./src",
"test:build": "publint --strict"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"./package.json": "./package.json"
},
"preferGlobal": false,
"sideEffects": false,
"files": [
"src"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@commitlint/parse": "catalog:",
"jsonfile": "catalog:",
"semver": "catalog:",
"simple-git": "catalog:"
},
"devDependencies": {
"@tanstack/eslint-config": "workspace:*",
"@types/jsonfile": "catalog:",
"@types/semver": "catalog:",
"type-fest": "catalog:"
}
}