stickyinc 0.5.2

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 ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "stickyinc",
3
+ "version": "0.5.2",
4
+ "description": "A reification layer between LLM conversations and your commitments. MCP server + floating pane.",
5
+ "type": "module",
6
+ "bin": {
7
+ "stickyinc": "dist/bundle/stickyinc-mcp.mjs",
8
+ "stickyinc-watch": "dist/bundle/stickyinc-watch.mjs"
9
+ },
10
+ "files": [
11
+ "dist/bundle/"
12
+ ],
13
+ "scripts": {
14
+ "dev": "tsx src/index.ts",
15
+ "build": "tsc && chmod +x dist/index.js dist/watch-cli.js",
16
+ "bundle": "node scripts/bundle.mjs",
17
+ "start": "node dist/index.js",
18
+ "watch": "tsx src/watch-cli.ts",
19
+ "typecheck": "tsc --noEmit",
20
+ "prepublishOnly": "tsc --noEmit && node scripts/bundle.mjs && node smoke.mjs dist/bundle/stickyinc-mcp.mjs"
21
+ },
22
+ "keywords": [
23
+ "mcp",
24
+ "mcp-server",
25
+ "model-context-protocol",
26
+ "claude",
27
+ "todo",
28
+ "tasks"
29
+ ],
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/Astralchemist/stickyinc.git"
33
+ },
34
+ "homepage": "https://github.com/Astralchemist/stickyinc#readme",
35
+ "bugs": "https://github.com/Astralchemist/stickyinc/issues",
36
+ "license": "MIT",
37
+ "engines": {
38
+ "node": ">=22.13"
39
+ },
40
+ "devDependencies": {
41
+ "@modelcontextprotocol/sdk": "^1.0.0",
42
+ "@types/node": "^25.6.0",
43
+ "esbuild": "^0.27.7",
44
+ "tsx": "^4.19.1",
45
+ "typescript": "^6.0.3",
46
+ "zod": "^3.23.8"
47
+ },
48
+ "pnpm": {
49
+ "onlyBuiltDependencies": [
50
+ "esbuild"
51
+ ]
52
+ }
53
+ }