@rexeus/typeweaver 0.0.1

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/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@rexeus/typeweaver",
3
+ "version": "0.0.1",
4
+ "description": "Command-line interface for the TypeWeaver API framework",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist",
10
+ "package.json",
11
+ "README.md"
12
+ ],
13
+ "bin": {
14
+ "typeweaver": "dist/run-cli-with-tsx.js"
15
+ },
16
+ "keywords": [
17
+ "api",
18
+ "spec",
19
+ "definition",
20
+ "typescript",
21
+ "zod",
22
+ "generator",
23
+ "typeweaver"
24
+ ],
25
+ "author": "Dennis Wentzien <dw@rexeus.com>",
26
+ "license": "ISC",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/rexeus/typeweaver.git",
30
+ "directory": "packages/cli"
31
+ },
32
+ "bugs": {
33
+ "url": "https://github.com/rexeus/typeweaver/issues"
34
+ },
35
+ "homepage": "https://github.com/rexeus/typeweaver#readme",
36
+ "devDependencies": {
37
+ "axios": "^1.9.0",
38
+ "case": "^1.6.3",
39
+ "hono": "^4.6.14",
40
+ "@rexeus/typeweaver-core": "0.0.1",
41
+ "@rexeus/typeweaver-types": "0.0.1",
42
+ "@rexeus/typeweaver-hono": "0.0.1",
43
+ "@rexeus/typeweaver-clients": "0.0.1",
44
+ "@rexeus/typeweaver-gen": "0.0.1",
45
+ "@rexeus/typeweaver-aws-cdk": "0.0.1"
46
+ },
47
+ "peerDependencies": {
48
+ "@rexeus/typeweaver-core": "*",
49
+ "@rexeus/typeweaver-gen": "*",
50
+ "@rexeus/typeweaver-types": "*",
51
+ "@rexeus/typeweaver-clients": "*",
52
+ "@rexeus/typeweaver-aws-cdk": "*",
53
+ "@rexeus/typeweaver-hono": "*"
54
+ },
55
+ "dependencies": {
56
+ "commander": "^14.0.0",
57
+ "tsx": "^4.19.4"
58
+ },
59
+ "scripts": {
60
+ "cli": "tsx src/cli.ts",
61
+ "typecheck": "tsc --noEmit --project tsconfig.test.json",
62
+ "format": "prettier --write .",
63
+ "build": "pkgroll --clean-dist && cp -r ./src/generators/templates ./dist/templates",
64
+ "preversion": "npm run build",
65
+ "test:bundle": "pnpm run build && node dist/run-cli-with-tsx.js generate --output test/output --input test/definition --plugins clients,aws-cdk,hono",
66
+ "test:gen": "tsx src/cli.ts generate --output test/output --input test/definition --plugins clients,aws-cdk,hono"
67
+ }
68
+ }