@revojs/translate 0.1.47 → 0.1.49

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,5 @@
1
+ declare module "#locales" {
2
+ const entries: Record<string, Record<string, string>>;
3
+
4
+ export default entries;
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revojs/translate",
3
- "version": "0.1.47",
3
+ "version": "0.1.49",
4
4
  "license": "MIT",
5
5
  "repository": "tellua/revojs",
6
6
  "files": [
@@ -8,24 +8,22 @@
8
8
  "src/types"
9
9
  ],
10
10
  "type": "module",
11
- "main": "./dist/index.mjs",
12
- "module": "./dist/index.mjs",
13
- "types": "./dist/index.d.mts",
11
+ "main": "./dist/index.js",
12
+ "module": "./dist/index.js",
13
+ "types": "./dist/index.d.ts",
14
14
  "exports": {
15
15
  ".": {
16
- "types": "./dist/index.d.mts",
17
- "import": "./dist/index.mjs"
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/index.js"
18
18
  }
19
19
  },
20
20
  "scripts": {
21
- "build": "tsdown",
22
- "watch": "tsdown -w"
21
+ "build": "revojs module build"
23
22
  },
24
23
  "dependencies": {
25
24
  "revojs": "*"
26
25
  },
27
26
  "devDependencies": {
28
- "@revojs/tsconfig": "*",
29
- "tsdown": "^0.21.2"
27
+ "@revojs/tsconfig": "*"
30
28
  }
31
29
  }
File without changes
File without changes