create-promptframe-component 0.0.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.
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # create-promptframe-component
2
+
3
+ Project scaffolder for PromptFrame-compatible components.
4
+
5
+ This `0.0.0` release is a placeholder that reserves the package name and trusted publishing route. The first functional release will start at `0.1.0`.
6
+
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ console.log('create-promptframe-component 0.0.0 placeholder. Functional scaffolding will ship in 0.1.0.');
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAEA,OAAO,CAAC,GAAG,CAAC,4FAA4F,CAAC,CAAC"}
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "create-promptframe-component",
3
+ "version": "0.0.0",
4
+ "license": "MIT",
5
+ "type": "module",
6
+ "files": [
7
+ "dist",
8
+ "README.md"
9
+ ],
10
+ "bin": {
11
+ "create-promptframe-component": "./dist/index.js"
12
+ },
13
+ "main": "./dist/index.js",
14
+ "types": "./dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/index.js",
18
+ "types": "./dist/index.d.ts"
19
+ },
20
+ "./package.json": {
21
+ "default": "./package.json"
22
+ }
23
+ },
24
+ "publishConfig": {
25
+ "registry": "https://registry.npmjs.org/",
26
+ "access": "public",
27
+ "provenance": true
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/ty-teams/promptframe-component-authoring.git",
32
+ "directory": "packages/create-component"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/ty-teams/promptframe-component-authoring/issues"
36
+ },
37
+ "homepage": "https://github.com/ty-teams/promptframe-component-authoring#readme",
38
+ "scripts": {
39
+ "build": "tsc",
40
+ "lint": "tsc --noEmit",
41
+ "test": "node -e \"console.log('placeholder test: create-promptframe-component')\"",
42
+ "clean": "rm -rf dist"
43
+ },
44
+ "dependencies": {},
45
+ "devDependencies": {
46
+ "typescript": "~5.7.0"
47
+ }
48
+ }