-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@drewjbartlett/i17n",
"repository": "https://github.com/drewjbartlett/i17n",
"type": "module",
"version": "0.0.20",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"release": {
"branches": [
"main"
]
},
"scripts": {
"build": "vite build",
"test": "jest --maxWorkers=50%",
"test-watch": "jest --watch",
"lint": "eslint --ext .js,.ts, --ignore-path .eslintignore src --fix",
"lint:dry": "eslint --ext .js,.ts, --ignore-path .eslintignore src"
},
"keywords": [
"i18n",
"internationalization",
"lightweight",
"translations",
"vue",
"typescript",
"internationalization",
"typesafe",
"l10n",
"localization",
"internationalization library",
"localization library",
"localization engine",
"lightweight",
"svelte",
"sveltekit",
"react",
"react-native",
"nextjs",
"expo",
"angular",
"vue",
"nuxtjs",
"solid",
"nodejs"
],
"author": "https://github.com/drewjbartlett",
"license": "MIT",
"devDependencies": {
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"turbo": "^1.10.16",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.6.3"
},
"dependencies": {
"deepmerge": "^4.3.1"
}
}