-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
{
"name": "@opentalk/i18next-fluent",
"version": "2.0.0",
"description": "Updated i18nFormat plugin to use fluent format with i18next",
"type": "module",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"keywords": [
"i18next",
"i18next-format",
"fluent"
],
"dependencies": {
"@fluent/bundle": "^0.17.1",
"@opentalk/fluent_conv": "workspace:*",
"@swc/helpers": "^0.3.17"
},
"peerDependencies": {
"i18next": "^21.9.1"
},
"devDependencies": {
"@parcel/packager-ts": "~2.5.0",
"@parcel/transformer-typescript-types": "~2.5.0",
"@swc/core": "^1.3.0",
"@swc/jest": "^0.2.22",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.5.0",
"i18next": "^21.9.1",
"jest": "^29.5.0",
"parcel": "~2.5.0",
"typescript": "~4.7.4"
},
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:tests": "eslint test/ --ext .js,.jsx,.ts,.tsx",
"watch": "parcel watch --no-hmr",
"build": "parcel build"
},
"author": "Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)",
"contributors": [
"Rudi Floren <r.floren@heinlein-video.de"
],
"license": "MIT",
"lock": false,
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
}
},
"eslintConfig": {
"extends": [
"prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}