-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "@plaidev/react-i18n",
"version": "1.0.13",
"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": "[email protected]:plaidev/react-i18n.git",
"author": "RyosukeCla <[email protected]>",
"scripts": {
"build": "yarn run build:lib && yarn 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": "yarn run build"
},
"devDependencies": {
"@types/react": "^18.0.22",
"@vitejs/plugin-react": "^2.1.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"typescript": "^4.8.4",
"vite": "^3.1.8"
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}