-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.41 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
{
"name": "@yuo-app/lin",
"type": "module",
"version": "0.1.6",
"packageManager": "bun@1.1.29",
"description": "auto-i18n",
"license": "MIT",
"homepage": "https://github.com/yuo-app/lin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yuo-app/lin.git"
},
"bugs": {
"url": "https://github.com/yuo-app/lin/issues"
},
"keywords": ["i18n", "translation", "cli", "i18next", "llm"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"lin": "./bin/lin.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "bun --bun unbuild",
"dev": "bun --bun unbuild --stub",
"lint": "eslint . --fix",
"test": "echo \"Error: write tests you little shit\" && exit 1",
"release": "bumpp && npm publish --access public"
},
"peerDependencies": {
"typescript": "^5.6.2"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"citty": "^0.1.6",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"openai": "^4.63.0",
"picocolors": "^1.1.0",
"unconfig": "^0.5.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.1",
"@types/bun": "latest",
"@yuo-app/lin": "^0.1.4",
"bumpp": "^9.5.2",
"eslint": "^9.11.0",
"unbuild": "^2.0.0"
},
"overrides": {
"whatwg-url": "13.0.0"
}
}