@voilabs/oilang 0.0.2 → 0.0.3

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.
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@voilabs/oilang",
3
+ "description": "A robust internationalization (i18n) handling library designed for performance and flexibility.",
4
+ "version": "0.0.3",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "prepublishOnly": "npm run build"
10
+ },
11
+ "devDependencies": {
12
+ "@types/bun": "latest",
13
+ "@types/node": "^25.2.3",
14
+ "@types/pg": "^8.16.0"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "keywords": [
20
+ "i18n",
21
+ "full-stack",
22
+ "realtime"
23
+ ],
24
+ "peerDependencies": {
25
+ "typescript": "^5.9.3"
26
+ },
27
+ "homepage": "https://oilang.com",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/voilabs/node-oilang.git"
31
+ },
32
+ "dependencies": {
33
+ "ioredis": "^5.9.3",
34
+ "pg": "^8.18.0"
35
+ }
36
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@voilabs/oilang",
3
3
  "description": "A robust internationalization (i18n) handling library designed for performance and flexibility.",
4
- "version": "0.0.2",
4
+ "version": "0.0.3",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
@@ -16,6 +16,11 @@
16
16
  "publishConfig": {
17
17
  "access": "public"
18
18
  },
19
+ "keywords": [
20
+ "i18n",
21
+ "full-stack",
22
+ "realtime"
23
+ ],
19
24
  "peerDependencies": {
20
25
  "typescript": "^5.9.3"
21
26
  },
package/tsconfig.json CHANGED
@@ -8,6 +8,6 @@
8
8
  "skipLibCheck": true,
9
9
  "forceConsistentCasingInFileNames": true
10
10
  },
11
- "include": ["dist"],
12
- "exclude": ["node_modules", "**/*.test.ts"]
11
+ "include": ["dist", "README.md", "package.json"],
12
+ "exclude": ["src", "node_modules", "**/*.test.ts"]
13
13
  }