@fulmenhq/tsfulmen 0.3.1 → 0.3.2

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.
@@ -16,7 +16,7 @@
16
16
  "@fastify/forwarded@3.0.1","MIT","https://github.com/fastify/forwarded"
17
17
  "@fastify/merge-json-schemas@0.2.1","MIT","https://github.com/fastify/merge-json-schemas"
18
18
  "@fastify/proxy-addr@5.1.0","MIT","https://github.com/fastify/proxy-addr"
19
- "@fulmenhq/tsfulmen@0.3.1","MIT","https://github.com/fulmenhq/tsfulmen"
19
+ "@fulmenhq/tsfulmen@0.3.2","MIT","https://github.com/fulmenhq/tsfulmen"
20
20
  "@isaacs/cliui@8.0.2","ISC","https://github.com/yargs/cliui"
21
21
  "@isaacs/fs-minipass@4.0.1","ISC","https://github.com/npm/fs-minipass"
22
22
  "@isaacs/string-locale-compare@1.1.0","ISC","https://github.com/isaacs/string-locale-compare"
package/package.json CHANGED
@@ -189,5 +189,5 @@
189
189
  },
190
190
  "type": "module",
191
191
  "types": "./dist/index.d.ts",
192
- "version": "0.3.1"
192
+ "version": "0.3.2"
193
193
  }
@@ -135,6 +135,40 @@
135
135
  }
136
136
  },
137
137
  "description": "Python-specific packaging metadata (optional, for PyPI projects)"
138
+ },
139
+ "typescript": {
140
+ "type": "object",
141
+ "additionalProperties": false,
142
+ "properties": {
143
+ "package_name": {
144
+ "type": "string",
145
+ "pattern": "^(?:@[a-z0-9][a-z0-9._-]*/)?[a-z0-9][a-z0-9._-]*$",
146
+ "description": "npm package name (scoped or unscoped, e.g. @fulmenhq/tsfulmen)"
147
+ },
148
+ "console_scripts": {
149
+ "type": "array",
150
+ "items": {
151
+ "type": "object",
152
+ "required": [
153
+ "name",
154
+ "entry_point"
155
+ ],
156
+ "additionalProperties": false,
157
+ "properties": {
158
+ "name": {
159
+ "type": "string",
160
+ "description": "Bin command name (maps to a package.json `bin` key)"
161
+ },
162
+ "entry_point": {
163
+ "type": "string",
164
+ "description": "Path to the executable entry relative to package root (package.json `bin` value, e.g. ./dist/bin/cli.js)"
165
+ }
166
+ }
167
+ },
168
+ "description": "Executable bin entries (maps to package.json `bin`)"
169
+ }
170
+ },
171
+ "description": "TypeScript/npm-specific packaging metadata (optional, for npm projects)"
138
172
  }
139
173
  },
140
174
  "description": "Optional metadata - additional properties allowed for extensibility"