-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 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
55
56
57
58
59
60
61
{
"type": "module",
"name": "@fastrp/locales",
"description": "Localization package for FastV - A comprehensive i18n solution",
"version": "0.0.27",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist && tsc --emitDeclarationOnly",
"check": "bun ./src/validateLanguages.ts",
"check:watch": "nodemon --legacy-watch ./src/languages/**/*.{ts,js} --exec 'bun run check'",
"dev": "bun build ./src/index.ts --outdir ./dist --watch",
"prepublishOnly": "bun run build",
"clean": "rm -rf dist",
"prebuild": "bun run clean"
},
"dependencies": {
"i18next": "^23.16.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"bun-types": "latest",
"chalk": "^5.3.0",
"nodemon": "^3.1.9",
"ora": "^8.1.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inceptionnet/fastv-locales.git"
},
"keywords": [
"localization",
"i18n",
"fastv",
"translations",
"internationalization"
],
"author": {
"name": "FastV",
"url": "https://github.com/inceptionnet"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}