-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
62
63
64
{
"name": "@foliagecp/react-i18n",
"description": "Foliage i18n plugin for react",
"version": "0.0.4",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dist/index.d.ts": "./dist/index.d.ts"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/foliagecp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foliagecp/react-i18n.git"
},
"author": "Arseny Malinkovich",
"license": "ISC",
"bugs": {
"url": "https://github.com/foliagecp/react-i18n/issues"
},
"homepage": "https://github.com/foliagecp/react-i18n#readme",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "tsx --test tests/eslint-plugin-i18n.integration.test.mts",
"preview": "vite preview",
"pub": "npm run build && npm publish"
},
"peerDependencies": {
"react": "^18.3.1 || ^19"
},
"dependencies": {
"node-polyglot": "2.6.0"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/node": "22.12.0",
"@types/node-polyglot": "2.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "4.3.4",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "0.4.16",
"globals": "15.14.0",
"react": "19.2.5",
"tsx": "^4.21.0",
"typescript": "5.6.2",
"typescript-eslint": "8.18.2",
"vite": "6.4.2",
"vite-plugin-dts": "4.5.3"
}
}