kanban-lite 1.0.43 → 1.0.44

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 (2) hide show
  1. package/.vscodeignore +21 -0
  2. package/package.json +4 -4
package/.vscodeignore CHANGED
@@ -1,13 +1,34 @@
1
1
  .vscode/**
2
2
  .git/**
3
+ .github/**
4
+ .agents/**
5
+ .claude/**
6
+ .devtool/**
7
+ .kanban/**
3
8
  node_modules/**
4
9
  lib/**
5
10
  bin/**
6
11
  src/**
12
+ tmp/**
13
+ releases/**
14
+ docs/**
15
+ scripts/**
7
16
  *.map
8
17
  .gitignore
9
18
  pnpm-lock.yaml
10
19
  tsconfig.json
11
20
  vite.config.ts
12
21
  eslint.config.mjs
22
+ vite.standalone.config.ts
23
+ vitest.config.ts
24
+ postcss.config.js
25
+ AGENTS.md
26
+ SKILL.md
27
+ CONTRIBUTING.md
28
+ skills-lock.json
13
29
  README.md
30
+ dist/standalone.js
31
+ dist/webview/**
32
+ dist/cli.js
33
+ dist/mcp-server.js
34
+ dist/sdk/**
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "kanban-lite",
3
3
  "displayName": "Kanban Lite",
4
4
  "description": "A kanban board for your codebase. Cards stored as markdown.",
5
- "version": "1.0.43",
5
+ "version": "1.0.44",
6
6
  "publisher": "borgius",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -105,7 +105,7 @@
105
105
  "scripts": {
106
106
  "publish:all": "vsce publish && ovsx publish",
107
107
  "vscode:prepublish": "npm run build",
108
- "build": "npm run build:extension && npm run build:webview && npm run build:standalone-webview && npm run build:cli && npm run build:mcp && npm run build:sdk",
108
+ "build": "npm run build:extension && npm run build:standalone-webview && npm run build:cli && npm run build:mcp && npm run build:sdk",
109
109
  "build:sdk": "esbuild src/sdk/index.ts --bundle --outfile=dist/sdk/index.cjs --format=cjs --platform=node --external:better-sqlite3 && esbuild src/sdk/index.ts --bundle --outfile=dist/sdk/index.mjs --format=esm --platform=node --external:better-sqlite3 && tsc -p tsconfig.sdk.json",
110
110
  "build:cli": "esbuild src/cli/index.ts --bundle --outfile=dist/cli.js --format=cjs --platform=node --banner:js=\"#!/usr/bin/env node\"",
111
111
  "cli": "tsx src/cli/index.ts",
@@ -117,14 +117,14 @@
117
117
  "build:standalone-server": "esbuild src/standalone/index.ts --bundle --outfile=dist/standalone.js --format=cjs --platform=node --banner:js=\"#!/usr/bin/env node\"",
118
118
  "build:standalone-webview": "vite build --config vite.standalone.config.ts",
119
119
  "standalone": "npm run build:standalone && node dist/standalone.js",
120
- "watch": "concurrently \"npm run watch:extension\" \"npm run watch:webview\"",
120
+ "watch": "concurrently \"npm run watch:extension\" \"npm run watch:standalone-webview\"",
121
121
  "watch:extension": "esbuild src/extension/index.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --watch",
122
122
  "watch:webview": "vite build --watch",
123
123
  "watch:standalone-webview": "vite build --config vite.standalone.config.ts --watch",
124
124
  "watch:standalone-server": "esbuild src/standalone/index.ts --bundle --outfile=dist/standalone.js --format=cjs --platform=node --banner:js=\"#!/usr/bin/env node\" --watch",
125
125
  "dev:standalone-server": "node --watch-path=dist/standalone.js dist/standalone.js --port 2954 --no-browser",
126
126
  "dev:standalone-vite": "vite dev --config vite.standalone.config.ts",
127
- "dev": "npm run build:standalone-server && concurrently \"npm run watch:extension\" \"npm run watch:webview\" \"npm run watch:standalone-server\" \"npm run dev:standalone-server\" \"npm run dev:standalone-vite\"",
127
+ "dev": "npm run build:standalone-server && concurrently \"npm run watch:extension\" \"npm run watch:standalone-server\" \"npm run dev:standalone-server\" \"npm run dev:standalone-vite\"",
128
128
  "test": "vitest run",
129
129
  "test:watch": "vitest",
130
130
  "lint": "eslint src",