forked from TanStack/config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.29 KB
/
package.json
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@tanstack/config",
"version": "0.5.1",
"description": "Configuration and tools for publishing and maintaining TanStack projects.",
"author": "tannerlinsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/config.git"
},
"homepage": "https://tanstack.com/config",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"type": "module",
"exports": {
"./publish": {
"import": {
"types": "./src/publish/index.d.ts",
"default": "./src/publish/index.js"
}
},
"./build": {
"import": {
"types": "./src/build/index.d.ts",
"default": "./src/build/index.js"
}
},
"./package.json": "./package.json"
},
"bin": {
"tanstack-config": "./bin/config.js"
},
"engines": {
"node": ">=18"
},
"preferGlobal": false,
"sideEffects": false,
"files": [
"bin",
"src"
],
"packageManager": "pnpm@8.15.1",
"scripts": {
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
"test": "pnpm run test:ci",
"test:pr": "nx run-many --targets=test:format,test:eslint,test:types,test:build",
"test:ci": "nx run-many --targets=test:format,test:eslint,test:types,test:build",
"test:build": "publint --strict",
"test:types": "tsc",
"test:eslint": "eslint --ext .js,.ts,.tsx ./bin ./src",
"test:format": "pnpm run prettier --check",
"prettier": "prettier --ignore-unknown '**/*'",
"prettier:write": "pnpm run prettier --write",
"cipublish": "node ./bin/config.js publish --cwd .",
"cipublishforce": "CI=true pnpm cipublish"
},
"nx": {
"includedScripts": [
"test:format",
"test:eslint",
"test:types",
"test:build"
]
},
"dependencies": {
"@commitlint/parse": "^18.6.1",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"current-git-branch": "^1.1.0",
"esbuild-register": "^3.5.0",
"git-log-parser": "^1.2.0",
"interpret": "^3.1.1",
"jsonfile": "^6.1.0",
"liftoff": "^4.0.0",
"luxon": "^3.4.4",
"minimist": "^1.2.8",
"rollup-plugin-preserve-directives": "^0.4.0",
"semver": "^7.6.0",
"stream-to-array": "^2.3.0",
"v8flags": "^4.0.1",
"vite-plugin-dts": "^3.7.2",
"vite-plugin-externalize-deps": "^0.8.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.10",
"@types/current-git-branch": "^1.1.6",
"@types/eslint": "^8.56.2",
"@types/git-log-parser": "^1.2.3",
"@types/interpret": "^1.1.3",
"@types/jsonfile": "^6.1.4",
"@types/liftoff": "^4.0.3",
"@types/luxon": "^3.4.2",
"@types/minimist": "^1.2.5",
"@types/node": "^18.19.8",
"@types/semver": "^7.5.7",
"@types/stream-to-array": "^2.3.3",
"@types/v8flags": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"jsdom": "^24.0.0",
"nx": "^18.0.4",
"prettier": "^4.0.0-alpha.8",
"publint": "^0.2.7",
"type-fest": "^4.10.2",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vitest": "^1.3.0"
}
}