-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "@plaidev/react-i18n",
"version": "2.0.0",
"license": "MIT",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"keywords": [
"react",
"i18n",
"internationalization",
"react-i18n",
"react internationalization"
],
"description": "The most simplest type-safe internationalization library for react.",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": "git@github.com:plaidev/react-i18n.git",
"author": "RyosukeCla <RyosukeCla@users.noreply.github.com>",
"scripts": {
"build": "npm run build:lib && npm run build:type",
"build:lib": "vite --config ./vite.build.config.ts build",
"build:type": "tsc -p ./tsconfig.build.json",
"test": "echo 'test is not implemented yet.'",
"prettier": "npx prettier --write ./__tests__/**/*.ts ./src/**/*.ts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/react": "^19.1.12",
"@vitejs/plugin-react": "^5.0.2",
"prettier": "^2.8.8",
"react": "^19.1.1",
"typescript": "^5.9.2",
"vite": "^6.3.5"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}