-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"name": "react-localization",
"version": "2.0.5",
"description": "Simple module to localize the React interface using the same syntax used in the ReactNativeLocalization module",
"type": "module",
"main": "./lib/react-localization.umd.js",
"module": "./lib/react-localization.es.js",
"types": "./lib/react-localization.d.ts",
"exports": {
".": {
"import": "./lib/react-localization.es.js"
}
},
"files": [
"lib"
],
"scripts": {
"dev": "vite",
"test": "vitest",
"prepare": "npm run build",
"build:vite": "vite build",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:vite && npm run build:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefalda/react-localization.git"
},
"keywords": [
"react-component",
"react",
"localization",
"internationalization",
"javascript",
"typescript"
],
"author": "Stefano Falda <[email protected]> (http://www.babisoft.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefalda/react-localization/issues"
},
"homepage": "https://github.com/stefalda/react-localization#readme",
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"jsdom": "^26.0.0"
},
"dependencies": {
"localized-strings": "^2.0.3"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}