@rvoh/psychic 3.0.0-alpha.5 → 3.0.0-alpha.6

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.
@@ -41,7 +41,7 @@ ${INDENT} - integer[]
41
41
  ${INDENT}
42
42
  ${INDENT} - decimal:
43
43
  ${INDENT} - decimal[]:
44
- ${INDENT} scale,precision is required, e.g.: volume:decimal:3,2 or volume:decimal:3,2:optional
44
+ ${INDENT} precision,scale is required, e.g.: volume:decimal:3,2 or volume:decimal:3,2:optional
45
45
  ${INDENT}
46
46
  ${INDENT} leveraging arrays, add the "[]" suffix, e.g.: volume:decimal[]:3,2
47
47
  ${INDENT}
@@ -41,7 +41,7 @@ ${INDENT} - integer[]
41
41
  ${INDENT}
42
42
  ${INDENT} - decimal:
43
43
  ${INDENT} - decimal[]:
44
- ${INDENT} scale,precision is required, e.g.: volume:decimal:3,2 or volume:decimal:3,2:optional
44
+ ${INDENT} precision,scale is required, e.g.: volume:decimal:3,2 or volume:decimal:3,2:optional
45
45
  ${INDENT}
46
46
  ${INDENT} leveraging arrays, add the "[]" suffix, e.g.: volume:decimal[]:3,2
47
47
  ${INDENT}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "type": "module",
3
3
  "name": "@rvoh/psychic",
4
4
  "description": "Typescript web framework",
5
- "version": "3.0.0-alpha.5",
5
+ "version": "3.0.0-alpha.6",
6
6
  "author": "RVOHealth",
7
7
  "repository": {
8
8
  "type": "git",
@@ -47,26 +47,7 @@
47
47
  "files": [
48
48
  "dist/**/*"
49
49
  ],
50
- "scripts": {
51
- "client": "cd client && pnpm start",
52
- "client:fspec": "cd client && VITE_PSYCHIC_ENV=test BROWSER=none pnpm start",
53
- "psy": "NODE_ENV=${NODE_ENV:-test} pnpm psyts",
54
- "psyjs": "node ./dist/test-app/src/cli/index.js",
55
- "psyts": "NODE_ENV=${NODE_ENV:-test} tsx ./test-app/src/cli/index.ts",
56
- "gpsy": "tsx ./global-cli/main.ts",
57
- "build": "echo \"building cjs...\" && rm -rf dist && npx tsc -p ./tsconfig.cjs.build.json && echo \"building esm...\" && npx tsc -p ./tsconfig.esm.build.json",
58
- "build:test-app": "rm -rf dist && echo \"building test app to esm...\" && npx tsc -p ./tsconfig.esm.build.test-app.json && echo \"building test app to cjs...\" && npx tsc -p ./tsconfig.cjs.build.test-app.json",
59
- "types:esm:trace": "rm -rf dist && npx tsc -p ./tsconfig.esm.build.json --generateTrace ./typetrace --diagnostics && pnpm analyze-trace ./typetrace --skipMillis 100 --forceMillis 300",
60
- "dev": "nodemon --quiet --no-stdin",
61
- "console": "tsx ./test-app/src/conf/repl.ts",
62
- "uspec": "vitest --config ./spec/unit/vite.config.ts",
63
- "fspec": "vitest run --config=./spec/features/vite.config.ts",
64
- "format": "pnpm prettier . --write",
65
- "lint": "pnpm eslint --no-warn-ignored \"src/**/*.ts\" \"spec/**/*.ts\" \"test-app/**/*.ts\" && pnpm prettier . --check",
66
- "prepack": "pnpm build"
67
- },
68
50
  "dependencies": {
69
- "@koa/etag": "^5.0.2",
70
51
  "ajv": "^8.17.1",
71
52
  "ajv-formats": "^3.0.1",
72
53
  "commander": "^12.1.0",
@@ -77,10 +58,9 @@
77
58
  },
78
59
  "peerDependencies": {
79
60
  "@koa/cors": "^5.0.0",
61
+ "@koa/etag": "^5.0.2",
80
62
  "@koa/router": "^15.3.0",
81
63
  "@rvoh/dream": "^2.3.1",
82
- "@types/koa": "^2.15.0",
83
- "@types/koa__router": "^12.0.5",
84
64
  "commander": "^12.1.0",
85
65
  "koa": "^2.15.3",
86
66
  "koa-bodyparser": "^4.4.1",
@@ -90,6 +70,7 @@
90
70
  "devDependencies": {
91
71
  "@eslint/js": "^9.39.1",
92
72
  "@koa/cors": "^5.0.0",
73
+ "@koa/etag": "^5.0.2",
93
74
  "@koa/router": "^15.3.0",
94
75
  "@rvoh/dream": "^2.3.1",
95
76
  "@rvoh/dream-spec-helpers": "^2.1.1",
@@ -134,13 +115,21 @@
134
115
  "vitest": "^4.0.9",
135
116
  "winston": "^3.14.2"
136
117
  },
137
- "packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402",
138
- "pnpm": {
139
- "overrides": {
140
- "diff": ">=8.0.3",
141
- "minimatch@3": "3.1.3",
142
- "minimatch@5": "5.1.7",
143
- "minimatch@9": "9.0.6"
144
- }
118
+ "scripts": {
119
+ "client": "cd client && pnpm start",
120
+ "client:fspec": "cd client && VITE_PSYCHIC_ENV=test BROWSER=none pnpm start",
121
+ "psy": "NODE_ENV=${NODE_ENV:-test} pnpm psyts",
122
+ "psyjs": "node ./dist/test-app/src/cli/index.js",
123
+ "psyts": "NODE_ENV=${NODE_ENV:-test} tsx ./test-app/src/cli/index.ts",
124
+ "gpsy": "tsx ./global-cli/main.ts",
125
+ "build": "echo \"building cjs...\" && rm -rf dist && npx tsc -p ./tsconfig.cjs.build.json && echo \"building esm...\" && npx tsc -p ./tsconfig.esm.build.json",
126
+ "build:test-app": "rm -rf dist && echo \"building test app to esm...\" && npx tsc -p ./tsconfig.esm.build.test-app.json && echo \"building test app to cjs...\" && npx tsc -p ./tsconfig.cjs.build.test-app.json",
127
+ "types:esm:trace": "rm -rf dist && npx tsc -p ./tsconfig.esm.build.json --generateTrace ./typetrace --diagnostics && pnpm analyze-trace ./typetrace --skipMillis 100 --forceMillis 300",
128
+ "dev": "nodemon --quiet --no-stdin",
129
+ "console": "tsx ./test-app/src/conf/repl.ts",
130
+ "uspec": "vitest --config ./spec/unit/vite.config.ts",
131
+ "fspec": "vitest run --config=./spec/features/vite.config.ts",
132
+ "format": "pnpm prettier . --write",
133
+ "lint": "pnpm eslint --no-warn-ignored \"src/**/*.ts\" \"spec/**/*.ts\" \"test-app/**/*.ts\" && pnpm prettier . --check"
145
134
  }
146
- }
135
+ }