-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "react-typed-i18n",
"version": "2.4.1",
"type": "module",
"source": "src/index.ts",
"exports": "./dist/index.modern.js",
"main": "dist/index.cjs",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"description": "Strongly-Typed i18n solution for React",
"scripts": {
"build": "microbundle --tsconfig tsconfig.build.json --jsx React.createElement",
"test": "jest",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddadaal/react-typed-i18n"
},
"author": {
"name": "Chen Junda",
"email": "ddadaal@outlook.com",
"url": "https://ddadaal.me"
},
"homepage": "https://github.com/ddadaal/react-typed-i18n",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"microbundle": "^0.15.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"jest-environment-jsdom": "^29.5.0"
},
"packageManager": "pnpm@9.4.0"
}