-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
93 lines (93 loc) · 2.35 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
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
85
86
87
88
89
90
91
92
93
{
"name": "talkr",
"version": "3.5.1",
"description": "Talkr is the lightest i18n provider for React applications. It supports Typescript, provides autocompletion, has 0 dependencies, and is very easy to use.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"declaration": true,
"files": ["dist"],
"scripts": {
"build": "tsup",
"test": "jest",
"lint": "eslint --cache --max-warnings=0 --fix",
"tsc": "tsc --noEmit --incremental",
"format": "npx prettier . --write",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DoneDeal0/Talkr.git"
},
"keywords": [
"i18n",
"react",
"react-native",
"react native",
"reactjs",
"localization",
"globalization",
"translations",
"translation",
"internationalization",
"l10n",
"talkr"
],
"author": "DoneDeal0",
"license": "ISC",
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.10.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.3",
"@semantic-release/npm": "^12.0.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/react-dom": "^18.3.0",
"@types/react": "^18.3.5",
"babel-jest": "^29.7.0",
"eslint-plugin-react": "^7.35.2",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest-environment-jsdom": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"react-dom": "^18.3.1",
"react": "^18.3.1",
"ts-jest": "^29.2.5",
"tsup": "^8.2.4",
"typescript-eslint": "^8.5.0",
"typescript": "^5.6.2"
},
"bugs": {
"url": "https://github.com/DoneDeal0/Talkr/issues"
},
"readme": "./README.md",
"release": {
"branches": ["master"],
"verifyConditions": [
"@semantic-release/github",
"@semantic-release/npm"
],
"prepare": [],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": true
}
]
]
}
}