-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 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
{
"name": "i18nya",
"version": "0.2.4",
"description": "i18n as small as a cat's paw",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FyraLabs/i18nya.git"
},
"keywords": [
"internationalization",
"i18n",
"translation",
"localization",
"l10n",
"globalization"
],
"author": "madonuko <mado@fyralabs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FyraLabs/i18nya/issues"
},
"homepage": "https://github.com/FyraLabs/i18nya#readme",
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/astro-i18nya",
"<rootDir>/dist"
]
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"typescript": "^5.9.3"
}
}