gorsee 0.2.17 → 1.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.
Files changed (1) hide show
  1. package/package.json +12 -4
package/package.json CHANGED
@@ -1,11 +1,19 @@
1
1
  {
2
2
  "name": "gorsee",
3
- "version": "0.2.17",
3
+ "version": "1.0.0",
4
4
  "description": "AI-first reactive full-stack TypeScript framework for deterministic human and agent collaboration",
5
5
  "type": "module",
6
6
  "packageManager": "bun@1.3.9",
7
7
  "license": "MIT",
8
8
  "author": "Oleg Gorsky",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/OlegGorsky/gorseejs.git"
12
+ },
13
+ "homepage": "https://github.com/OlegGorsky/gorseejs#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/OlegGorsky/gorseejs/issues"
16
+ },
9
17
  "keywords": [
10
18
  "ai-first",
11
19
  "agentic",
@@ -84,11 +92,11 @@
84
92
  "runtime:policy": "node scripts/runtime-diagnostics-policy-check.mjs",
85
93
  "runtime:security:policy": "node scripts/runtime-security-contract-check.mjs",
86
94
  "compiler:audit": "node scripts/compiler-platform-audit.mjs",
87
- "compiler:parity": "node scripts/compiler-backend-parity.mjs",
88
- "compiler:canary": "node scripts/compiler-backend-parity.mjs && bun test tests/cli/programmatic-runtime.test.ts tests/compiler/init.test.ts",
95
+ "compiler:parity": "bun scripts/compiler-backend-parity.mjs",
96
+ "compiler:canary": "bun scripts/compiler-backend-parity.mjs && bun test tests/cli/programmatic-runtime.test.ts tests/compiler/init.test.ts",
89
97
  "compiler:promotion:check": "node scripts/compiler-promotion-check.mjs",
90
98
  "compiler:dossier:check": "node scripts/compiler-dossier-check.mjs",
91
- "compiler:default:rehearsal": "node scripts/compiler-backend-parity.mjs && bun test tests/cli/programmatic-runtime.test.ts tests/compiler/init.test.ts && node scripts/compiler-dossier-check.mjs && node scripts/backend-default-switch-review-check.mjs",
99
+ "compiler:default:rehearsal": "bun scripts/compiler-backend-parity.mjs && bun test tests/cli/programmatic-runtime.test.ts tests/compiler/init.test.ts && node scripts/compiler-dossier-check.mjs && node scripts/backend-default-switch-review-check.mjs",
92
100
  "compiler:default:rehearsal:check": "node scripts/compiler-default-switch-rehearsal-check.mjs",
93
101
  "build:parity": "bun scripts/build-backend-parity.mjs",
94
102
  "build:canary": "bun scripts/build-backend-parity.mjs && bun test tests/cli/programmatic-runtime.test.ts tests/build/init.test.ts tests/integration/production-backend-parity.test.ts",