-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 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
{
"name": "@tanstack-dev/translate-docs",
"version": "1.4.0",
"description": "Translate tanstack-dev documentation",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"translate-docs": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@semantic-release/git": "^10.0.1",
"@types/commander": "^2.12.5",
"@types/glob": "^8.1.0",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^3.1.3",
"c8": "^10.1.3",
"semantic-release": "^21.0.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"dependencies": {
"commander": "^12.0.0",
"cosmiconfig": "^9.0.0",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"micromatch": "^4.0.8",
"openai": "^4.92.1"
},
"publishConfig": {
"access": "public"
}
}