@pieai/pro-gov 0.3.3 → 0.3.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pieai/pro-gov",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Project-level distribution kit for Project Governance System.",
5
5
  "keywords": [
6
6
  "ai-agents",
@@ -34,8 +34,16 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
+ "scripts": {
38
+ "dev": "tsx src/cli.ts",
39
+ "build": "node scripts/copy-assets.mjs && node node_modules/esbuild/bin/esbuild src/cli.ts --bundle --platform=node --format=esm --target=node22 --banner:js=\"#!/usr/bin/env node\" --outfile=dist/cli.js && chmod +x dist/cli.js",
40
+ "prepack": "pnpm build",
41
+ "pretest": "pnpm --filter @pieai/doc-gov build && pnpm build",
42
+ "test": "tsx --test src/*.test.ts src/**/*.test.ts",
43
+ "typecheck": "tsc -p tsconfig.json --noEmit"
44
+ },
37
45
  "dependencies": {
38
- "@pieai/doc-gov": "^0.3.3"
46
+ "@pieai/doc-gov": "workspace:^"
39
47
  },
40
48
  "devDependencies": {
41
49
  "@types/node": "25.0.0",
@@ -45,12 +53,5 @@
45
53
  },
46
54
  "engines": {
47
55
  "node": ">=22.12.0"
48
- },
49
- "scripts": {
50
- "dev": "tsx src/cli.ts",
51
- "build": "node scripts/copy-assets.mjs && node node_modules/esbuild/bin/esbuild src/cli.ts --bundle --platform=node --format=esm --target=node22 --banner:js=\"#!/usr/bin/env node\" --outfile=dist/cli.js && chmod +x dist/cli.js",
52
- "pretest": "pnpm --filter @pieai/doc-gov build && pnpm build",
53
- "test": "tsx --test src/**/*.test.ts",
54
- "typecheck": "tsc -p tsconfig.json --noEmit"
55
56
  }
56
- }
57
+ }