@fisharmy100/react-auto-i18n 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@fisharmy100/react-auto-i18n",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": "./dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsup src/index.ts --format esm --dts",
12
+ "dev": "tsup src/index.ts --watch --format esm --dts",
13
+ "docs": "npm run docs:md && npm run docs:pdf && npm run docs:html",
14
+ "docs:md": "npx typedoc --plugin typedoc-plugin-markdown --out docs/md src",
15
+ "docs:pdf": "powershell -Command \"pandoc (Get-ChildItem docs/md -Recurse -Filter *.md | ForEach-Object {$_.FullName}) -o docs/documentation.pdf\"",
16
+ "docs:html": "npx typedoc --out ../../docs/doc_website src"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "keywords": [],
22
+ "author": "",
23
+ "license": "ISC",
24
+ "type": "module",
25
+ "peerDependencies": {
26
+ "react": "^19.2.4",
27
+ "react-dom": "^19.2.4"
28
+ },
29
+ "devDependencies": {
30
+ "@types/react": "^19.2.14",
31
+ "@types/react-dom": "^19.2.3",
32
+ "tsup": "^8.5.1",
33
+ "typedoc": "^0.28.17",
34
+ "typedoc-plugin-markdown": "^4.10.0",
35
+ "typescript": "^5.9.3"
36
+ },
37
+ "dependencies": {
38
+ "flag-icons": "^7.5.0"
39
+ }
40
+ }