-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.4 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@entva/react-local",
"description": "A React internationalization library inspired by node-polyglot",
"author": "Max Degterev <max@degterev.me>",
"license": "MIT",
"readmeFilename": "README.md",
"repository": "entva/react-local",
"bugs": "https://github.com/entva/react-local/issues",
"version": "3.0.0",
"keywords": [
"react",
"polyglot",
"i18n",
"translation",
"locale",
"language",
"localization",
"internationalization"
],
"files": [
"lib/"
],
"type": "module",
"module": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs.js"
},
"./server": {
"types": "./lib/server.d.ts",
"import": "./lib/server.js",
"require": "./lib/server.cjs.js"
}
},
"scripts": {
"reinstall": "rm -rf node_modules package-lock.json && npm install",
"lint": "eslint ./",
"build": "rollup --config rollup.config.js",
"check": "npm run lint && npm run typecheck && npm run test",
"prepublishOnly": "npm run check && npm run build && echo \"\\033[0;32mReady to publish\\033[0m\"",
"start": "storybook dev -p 6006 --no-open",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/register": "^7.28.6",
"@entva/browserslist-config": "^1.0.0",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@storybook/react": "^10.3.3",
"@storybook/react-vite": "^10.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-entva-typescript": "^2.44.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup": "^4.60.0",
"rollup-plugin-delete": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-preserve-directives": "^1.1.3",
"storybook": "^10.3.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"peerDependencies": {
"react": "^18 || ^19"
},
"dependencies": {
"@babel/runtime": "^7.29.2"
}
}