@jolli.ai/space-cli 0.99.2 → 0.99.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": "@jolli.ai/space-cli",
3
- "version": "0.99.2",
3
+ "version": "0.99.4",
4
4
  "description": "Jolli Space — closed-source plugin for @jolli.ai/cli (adds the space / sync / source / impact / agent commands). Discovered and loaded by the open-source `jolli` CLI when both are installed.",
5
5
  "jolliPluginId": "c56530c4-3f2f-467f-a4a4-db4d44c79c1c",
6
6
  "type": "module",
@@ -14,10 +14,11 @@
14
14
  },
15
15
  "files": [
16
16
  "dist/Plugin.js",
17
- "dist/Plugin.d.ts"
17
+ "dist/Plugin.d.ts",
18
+ "README.md"
18
19
  ],
19
20
  "scripts": {
20
- "all": "npm run clean && npm run build && npm run lint && npm run test && npm run verify:no-source-leak",
21
+ "all": "npm run clean && npm run typecheck && npm run build && npm run lint && npm run test && npm run verify:no-source-leak",
21
22
  "build": "vite build && tsc --project tsconfig.build.json && node scripts/obfuscate.mjs && node scripts/smoke-dist.mjs",
22
23
  "build:fast": "vite build && tsc --project tsconfig.build.json",
23
24
  "clean": "rimraf dist/ .preobf-cache/",
@@ -26,8 +27,7 @@
26
27
  "lint:fix": "biome check --write",
27
28
  "test": "vitest run --coverage",
28
29
  "verify:no-source-leak": "node scripts/verify-no-source-leak.mjs",
29
- "e2e:plugin-discovery": "node scripts/e2e-plugin-discovery.mjs",
30
- "prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test && npm run verify:no-source-leak && node scripts/prepublish-gate.mjs"
30
+ "prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test && npm run verify:no-source-leak"
31
31
  },
32
32
  "keywords": [
33
33
  "jolli",
@@ -35,7 +35,7 @@
35
35
  "plugin"
36
36
  ],
37
37
  "author": "Jolli",
38
- "license": "UNLICENSED",
38
+ "license": "Elastic-2.0",
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },