-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"name": "react-typesafe-i18n",
"version": "1.0.4",
"description": "A fully type-safe and lightweight React internationalization library for all your TS and JS projects.",
"author": "Eduardo Borges<euduardoborges@gmail.com>",
"repository": "https://github.com/eduardoborges/react-typesafe-i18n.git",
"source": "./src/index.tsx",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "./scripts.sh build",
"dev": "./scripts.sh dev",
"prepare": "./scripts.sh prepare",
"lint": "./scripts.sh lint",
"test": "./scripts.sh test"
},
"peerDependencies": {
"react": "^16.14 || 17.x || 18.x",
"react-dom": "^16.14 || 17.x || 18.x"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "10.0.3",
"@semantic-release/release-notes-generator": "11.0.1",
"@swc/core": "^1.3.56",
"@types/node": "18",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"eslint": "8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"read-pkg": "8.0.0",
"rollup-plugin-dts": "5.3.0",
"rollup-plugin-swc3": "0.8.1",
"semantic-release": "21.0.2",
"typescript": "^5",
"vitest": "0.30.1"
},
"dependencies": {
"@preact/signals-react": "^1.3"
},
"files": [
"dist",
"src"
]
}