-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "i18xs",
"version": "1.5.4",
"description": "A lightweight and simple package for i18n and localization for node.js",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"scripts": {
"clean": "rm -rf build && rm -rf tsconfig.tsbuildinfo && echo '✅ Clean Completed'",
"build": "bun run clean && tsc && echo '✅ Build Completed' && exit",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3adel-bassiony/i18xs.git"
},
"keywords": [
"i18n",
"i18xs",
"localization",
"internationalization",
"globalization",
"translate",
"translation"
],
"author": "Adel Bassiony",
"license": "MIT",
"bugs": {
"url": "https://github.com/3adel-bassiony/i18xs/issues"
},
"homepage": "https://github.com/3adel-bassiony/i18xs#readme",
"devDependencies": {
"@types/bun": "^1.1.13",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"typescript": "^5.3.3",
"vitest": "^2.1.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"build/**/*"
]
}