-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1007 Bytes
/
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
{
"name": "@fnlb-project/locales",
"description": "FNLB Locales & Translation Module",
"version": "2.0.9",
"main": "src/index.ts",
"types": "src/index.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "bun run src/build.ts",
"translate": "bun run src/translator.ts",
"upload": "bun run src/upload.ts",
"prepublishOnly": "bun run src/build.ts",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome check --write .",
"lint:tsc": "bun tsc --noEmit",
"test": "bun run test/index.ts"
},
"files": ["dist"],
"author": "FNLB-Project",
"dependencies": {
"@fnlb-project/shared": "^1.5.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"tslib": "^2.8.1",
"@types/bun": "^1.1.14",
"bun-plugin-dts": "^0.3.0",
"google-translate-api-x": "^10.7.2",
"minio": "^8.0.3",
"typescript": "^5.7.2"
},
"packageManager": "bun@1.1.17"
}