@powerlines/plugin-i18next 0.1.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.
Files changed (38) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +304 -0
  3. package/dist/_virtual/rolldown_runtime.cjs +1 -0
  4. package/dist/helpers/config-utils.cjs +1 -0
  5. package/dist/helpers/config-utils.mjs +1 -0
  6. package/dist/index.cjs +17 -0
  7. package/dist/index.d.cts +20 -0
  8. package/dist/index.d.mts +21 -0
  9. package/dist/index.mjs +17 -0
  10. package/dist/powerlines/src/types/build.d.cts +145 -0
  11. package/dist/powerlines/src/types/build.d.mts +145 -0
  12. package/dist/powerlines/src/types/commands.d.cts +8 -0
  13. package/dist/powerlines/src/types/commands.d.mts +8 -0
  14. package/dist/powerlines/src/types/config.d.cts +357 -0
  15. package/dist/powerlines/src/types/config.d.mts +357 -0
  16. package/dist/powerlines/src/types/context.d.cts +362 -0
  17. package/dist/powerlines/src/types/context.d.mts +362 -0
  18. package/dist/powerlines/src/types/fs.d.cts +458 -0
  19. package/dist/powerlines/src/types/fs.d.mts +458 -0
  20. package/dist/powerlines/src/types/plugin.d.cts +231 -0
  21. package/dist/powerlines/src/types/plugin.d.mts +231 -0
  22. package/dist/powerlines/src/types/resolved.d.cts +81 -0
  23. package/dist/powerlines/src/types/resolved.d.mts +81 -0
  24. package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
  25. package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
  26. package/dist/types/i18n.cjs +0 -0
  27. package/dist/types/i18n.d.cts +22 -0
  28. package/dist/types/i18n.d.mts +22 -0
  29. package/dist/types/i18n.mjs +1 -0
  30. package/dist/types/index.cjs +0 -0
  31. package/dist/types/index.d.cts +3 -0
  32. package/dist/types/index.d.mts +3 -0
  33. package/dist/types/index.mjs +1 -0
  34. package/dist/types/plugin.cjs +0 -0
  35. package/dist/types/plugin.d.cts +25 -0
  36. package/dist/types/plugin.d.mts +25 -0
  37. package/dist/types/plugin.mjs +1 -0
  38. package/package.json +135 -0
package/package.json ADDED
@@ -0,0 +1,135 @@
1
+ {
2
+ "name": "@powerlines/plugin-i18next",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "A Powerlines plugin to use i18next for internationalization.",
6
+ "repository": {
7
+ "type": "github",
8
+ "url": "https://github.com/storm-software/powerlines.git",
9
+ "directory": "packages/plugin-i18next"
10
+ },
11
+ "homepage": "https://stormsoftware.com",
12
+ "bugs": {
13
+ "url": "https://stormsoftware.com/support",
14
+ "email": "support@stormsoftware.com"
15
+ },
16
+ "author": {
17
+ "name": "Storm Software",
18
+ "email": "contact@stormsoftware.com",
19
+ "url": "https://stormsoftware.com"
20
+ },
21
+ "maintainers": [
22
+ {
23
+ "name": "Storm Software",
24
+ "email": "contact@stormsoftware.com",
25
+ "url": "https://stormsoftware.com"
26
+ }
27
+ ],
28
+ "contributors": [
29
+ {
30
+ "name": "Storm Software",
31
+ "email": "contact@stormsoftware.com",
32
+ "url": "https://stormsoftware.com"
33
+ }
34
+ ],
35
+ "funding": {
36
+ "type": "github",
37
+ "url": "https://github.com/sponsors/storm-software"
38
+ },
39
+ "license": "Apache-2.0",
40
+ "private": false,
41
+ "main": "dist/index.cjs",
42
+ "module": "dist/index.mjs",
43
+ "exports": {
44
+ "./package.json": "./package.json",
45
+ ".": {
46
+ "import": {
47
+ "types": "./dist/index.d.mts",
48
+ "default": "./dist/index.mjs"
49
+ },
50
+ "require": {
51
+ "types": "./dist/index.d.cts",
52
+ "default": "./dist/index.cjs"
53
+ },
54
+ "default": {
55
+ "types": "./dist/index.d.mts",
56
+ "default": "./dist/index.mjs"
57
+ }
58
+ },
59
+ "./index": {
60
+ "import": {
61
+ "types": "./dist/index.d.mts",
62
+ "default": "./dist/index.mjs"
63
+ },
64
+ "require": {
65
+ "types": "./dist/index.d.cts",
66
+ "default": "./dist/index.cjs"
67
+ },
68
+ "default": {
69
+ "types": "./dist/index.d.mts",
70
+ "default": "./dist/index.mjs"
71
+ }
72
+ },
73
+ "./plugin": {
74
+ "import": {
75
+ "types": "./dist/index.d.mts",
76
+ "default": "./dist/index.mjs"
77
+ },
78
+ "require": {
79
+ "types": "./dist/index.d.cts",
80
+ "default": "./dist/index.cjs"
81
+ },
82
+ "default": {
83
+ "types": "./dist/index.d.mts",
84
+ "default": "./dist/index.mjs"
85
+ }
86
+ },
87
+ "./types": {
88
+ "import": {
89
+ "types": "./dist/types/index.d.mts",
90
+ "default": "./dist/types/index.mjs"
91
+ },
92
+ "require": {
93
+ "types": "./dist/types/index.d.cts",
94
+ "default": "./dist/types/index.cjs"
95
+ },
96
+ "default": {
97
+ "types": "./dist/types/index.d.mts",
98
+ "default": "./dist/types/index.mjs"
99
+ }
100
+ },
101
+ "./types/*": {
102
+ "import": {
103
+ "types": "./dist/types/*.d.mts",
104
+ "default": "./dist/types/*.mjs"
105
+ },
106
+ "require": {
107
+ "types": "./dist/types/*.d.cts",
108
+ "default": "./dist/types/*.cjs"
109
+ },
110
+ "default": {
111
+ "types": "./dist/types/*.d.mts",
112
+ "default": "./dist/types/*.mjs"
113
+ }
114
+ }
115
+ },
116
+ "typings": "dist/index.d.mts",
117
+ "files": ["dist/**/*"],
118
+ "keywords": ["i18next", "powerlines", "storm-software", "powerlines-plugin"],
119
+ "dependencies": {
120
+ "@stryke/fs": "^0.33.26",
121
+ "@stryke/path": "^0.24.0",
122
+ "@stryke/types": "^0.10.28",
123
+ "defu": "^6.1.4",
124
+ "powerlines": "^0.36.9"
125
+ },
126
+ "devDependencies": {
127
+ "@powerlines/nx": "^0.11.35",
128
+ "@powerlines/plugin-plugin": "^0.12.56",
129
+ "@types/node": "^24.10.4",
130
+ "i18next-cli": "^1.33.5",
131
+ "i18next-resources-for-ts": "^2.0.0"
132
+ },
133
+ "publishConfig": { "access": "public" },
134
+ "gitHead": "e9fb959df894f1aa67074af9fbb126978a450a45"
135
+ }