generated from antfu/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.33 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
{
"name": "aitranslator",
"type": "module",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "Translator your words using AI",
"author": "savoygu<[email protected]>",
"license": "MIT",
"homepage": "https://github.com/savoygu/aitranslator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/savoygu/aitranslator.git"
},
"bugs": "https://github.com/savoygu/aitranslator/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"aitranslator": "./bin/aitranslator.mjs",
"ait": "./bin/aitranslator.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"release": "bumpp --execute=\"nr build\" --no-push",
"release:prepare": "nr build",
"publish:ci": "esno scripts/publish.ts",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@antfu/ni": "^0.21.5",
"@antfu/utils": "^0.7.5",
"@clack/prompts": "^0.6.3",
"@types/gradient-string": "^1.1.2",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.4.5",
"@types/node-fetch": "^2.6.4",
"bumpp": "^9.1.1",
"cac": "^6.7.14",
"chatgpt": "^5.2.5",
"conf": "^11.0.2",
"eslint": "^8.45.0",
"esno": "^0.17.0",
"execa": "^7.2.0",
"gradient-string": "^2.0.2",
"https-proxy-agent": "^7.0.1",
"iso-639-1": "^2.1.15",
"kolorist": "^1.8.0",
"lint-staged": "^13.2.3",
"lodash-es": "^4.17.21",
"ohmyfetch": "^0.4.21",
"pnpm": "^8.6.10",
"rc9": "^2.1.1",
"rimraf": "^5.0.1",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.1.6",
"unbuild": "^1.2.1",
"vite": "^4.4.7",
"vitest": "^0.33.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}