@powerlines/plugin-nitro 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 (35) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +304 -0
  3. package/dist/index.cjs +1 -0
  4. package/dist/index.d.cts +11 -0
  5. package/dist/index.d.mts +12 -0
  6. package/dist/index.mjs +1 -0
  7. package/dist/powerlines/src/plugin-utils/get-config-path.cjs +1 -0
  8. package/dist/powerlines/src/plugin-utils/get-config-path.mjs +1 -0
  9. package/dist/powerlines/src/types/babel.d.mts +2 -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 +9 -0
  14. package/dist/powerlines/src/types/config.d.cts +369 -0
  15. package/dist/powerlines/src/types/config.d.mts +369 -0
  16. package/dist/powerlines/src/types/context.d.cts +362 -0
  17. package/dist/powerlines/src/types/context.d.mts +364 -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/hooks.d.mts +2 -0
  21. package/dist/powerlines/src/types/plugin.d.cts +231 -0
  22. package/dist/powerlines/src/types/plugin.d.mts +231 -0
  23. package/dist/powerlines/src/types/resolved.d.cts +81 -0
  24. package/dist/powerlines/src/types/resolved.d.mts +81 -0
  25. package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
  26. package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
  27. package/dist/types/index.cjs +0 -0
  28. package/dist/types/index.d.cts +2 -0
  29. package/dist/types/index.d.mts +2 -0
  30. package/dist/types/index.mjs +1 -0
  31. package/dist/types/plugin.cjs +0 -0
  32. package/dist/types/plugin.d.cts +33 -0
  33. package/dist/types/plugin.d.mts +33 -0
  34. package/dist/types/plugin.mjs +1 -0
  35. package/package.json +119 -0
package/package.json ADDED
@@ -0,0 +1,119 @@
1
+ {
2
+ "name": "@powerlines/plugin-nitro",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "A package containing a Powerlines plugin for creating a server application that runs on Nitro.",
6
+ "repository": {
7
+ "type": "github",
8
+ "url": "https://github.com/storm-software/powerlines.git",
9
+ "directory": "packages/plugin-nitro"
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
+ "exports": {
42
+ "./package.json": "./package.json",
43
+ ".": {
44
+ "import": {
45
+ "types": "./dist/index.d.mts",
46
+ "default": "./dist/index.mjs"
47
+ },
48
+ "require": {
49
+ "types": "./dist/index.d.cts",
50
+ "default": "./dist/index.cjs"
51
+ },
52
+ "default": {
53
+ "types": "./dist/index.d.mts",
54
+ "default": "./dist/index.mjs"
55
+ }
56
+ },
57
+ "./index": {
58
+ "import": {
59
+ "types": "./dist/index.d.mts",
60
+ "default": "./dist/index.mjs"
61
+ },
62
+ "require": {
63
+ "types": "./dist/index.d.cts",
64
+ "default": "./dist/index.cjs"
65
+ },
66
+ "default": {
67
+ "types": "./dist/index.d.mts",
68
+ "default": "./dist/index.mjs"
69
+ }
70
+ },
71
+ "./types": {
72
+ "import": {
73
+ "types": "./dist/types/index.d.mts",
74
+ "default": "./dist/types/index.mjs"
75
+ },
76
+ "require": {
77
+ "types": "./dist/types/index.d.cts",
78
+ "default": "./dist/types/index.cjs"
79
+ },
80
+ "default": {
81
+ "types": "./dist/types/index.d.mts",
82
+ "default": "./dist/types/index.mjs"
83
+ }
84
+ },
85
+ "./types/*": {
86
+ "import": {
87
+ "types": "./dist/types/*.d.mts",
88
+ "default": "./dist/types/*.mjs"
89
+ },
90
+ "require": {
91
+ "types": "./dist/types/*.d.cts",
92
+ "default": "./dist/types/*.cjs"
93
+ },
94
+ "default": {
95
+ "types": "./dist/types/*.d.mts",
96
+ "default": "./dist/types/*.mjs"
97
+ }
98
+ }
99
+ },
100
+ "files": ["dist/**/*"],
101
+ "keywords": ["nitro", "powerlines", "storm-software", "powerlines-plugin"],
102
+ "dependencies": {
103
+ "@storm-software/config-tools": "^1.188.74",
104
+ "@stryke/cli": "^0.12.36",
105
+ "@stryke/convert": "^0.6.29",
106
+ "@stryke/fs": "^0.33.26",
107
+ "@stryke/path": "^0.24.0",
108
+ "defu": "^6.1.4",
109
+ "nitro": "3.0.1-alpha.1",
110
+ "powerlines": "^0.36.13"
111
+ },
112
+ "devDependencies": {
113
+ "@powerlines/nx": "^0.11.39",
114
+ "@storm-software/tsup": "^0.2.72",
115
+ "@types/node": "^24.10.4"
116
+ },
117
+ "publishConfig": { "access": "public" },
118
+ "gitHead": "483677f34524b653a72b313c463081c800043753"
119
+ }