@side-quest/kit 0.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.
package/package.json ADDED
@@ -0,0 +1,115 @@
1
+ {
2
+ "name": "@side-quest/kit",
3
+ "version": "0.0.0",
4
+ "description": "Kit CLI integration for intelligent code search - MCP server with 7 tools for token-efficient codebase navigation",
5
+ "author": {
6
+ "name": "Nathan Vale",
7
+ "email": "hi@nathanvale.com"
8
+ },
9
+ "license": "MIT",
10
+ "type": "module",
11
+ "main": "./src/mcp/index.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.js"
15
+ },
16
+ "./package.json": "./package.json"
17
+ },
18
+ "files": [
19
+ "dist/**",
20
+ "src/mcp/**",
21
+ "README.md",
22
+ "LICENSE",
23
+ "CHANGELOG.md"
24
+ ],
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/nathanvale/side-quest-kit.git"
28
+ },
29
+ "bugs": {
30
+ "url": "https://github.com/nathanvale/side-quest-kit/issues"
31
+ },
32
+ "homepage": "https://github.com/nathanvale/side-quest-kit#readme",
33
+ "keywords": [
34
+ "kit",
35
+ "code-search",
36
+ "mcp",
37
+ "semantic-search",
38
+ "ast-search",
39
+ "cased-kit",
40
+ "claude-code"
41
+ ],
42
+ "engines": {
43
+ "node": ">=22.20"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public",
47
+ "provenance": true
48
+ },
49
+ "sideEffects": false,
50
+ "scripts": {
51
+ "build": "bunx bunup",
52
+ "check": "biome check --write .",
53
+ "check:publint": "publint",
54
+ "check:types": "attw --pack",
55
+ "clean": "rimraf dist 2>/dev/null || true",
56
+ "coverage": "bun test --coverage",
57
+ "dev": "bun --watch src/index.ts",
58
+ "format": "biome format --write .",
59
+ "format:check": "biome format .",
60
+ "hygiene": "bun run check:publint && bun run check:types",
61
+ "lint": "biome lint .",
62
+ "lint:fix": "biome lint --write .",
63
+ "lint:scripts": "shellcheck .github/scripts/*.sh",
64
+ "lint:workflows": "actionlint -color -verbose",
65
+ "pack:dry": "mkdir -p .pack && bun pm pack --destination .pack --ignore-scripts && ls -lah .pack && tar -tf .pack/*.tgz | sort | sed 's/^/ - /'",
66
+ "pre:enter:beta": "changeset pre enter beta",
67
+ "pre:enter:next": "changeset pre enter next",
68
+ "pre:enter:rc": "changeset pre enter rc",
69
+ "pre:exit": "changeset pre exit",
70
+ "prepare": "husky",
71
+ "publish:pre": "changeset publish --provenance",
72
+ "quality-check:ci": "biome check . && bun run typecheck",
73
+ "release": "changeset publish --provenance",
74
+ "release:snapshot:canary": "changeset version --snapshot canary && changeset publish --tag canary",
75
+ "security:audit": "npm audit",
76
+ "test": "bun test --recursive",
77
+ "test:ci": "TF_BUILD=true bun test --recursive",
78
+ "test:coverage": "bun test --coverage",
79
+ "test:watch": "bun test --watch",
80
+ "typecheck": "tsc -p tsconfig.eslint.json --noEmit",
81
+ "validate": "bun run lint && bun run typecheck && bun run build && TF_BUILD=true bun run test",
82
+ "version:gen": "bun run scripts/version-gen.ts",
83
+ "version:pre": "changeset version",
84
+ "watch:types": "tsc -p tsconfig.eslint.json --noEmit --watch"
85
+ },
86
+ "dependencies": {
87
+ "@side-quest/core": "^0.1.1",
88
+ "tree-sitter-wasms": "^0.1.13",
89
+ "web-tree-sitter": "^0.25.10"
90
+ },
91
+ "devDependencies": {
92
+ "@arethetypeswrong/cli": "^0.18.2",
93
+ "@biomejs/biome": "^2.3.7",
94
+ "@changesets/changelog-github": "^0.5.1",
95
+ "@changesets/cli": "^2.29.7",
96
+ "@commitlint/cli": "^20.1.0",
97
+ "@commitlint/config-conventional": "^20.0.0",
98
+ "@types/node": "^24.8.1",
99
+ "bun-types": "^1.3.3",
100
+ "bunup": "^0.16.10",
101
+ "husky": "^9.1.7",
102
+ "lint-staged": "^15.2.10",
103
+ "publint": "^0.3.15",
104
+ "rimraf": "^6.0.1",
105
+ "typescript": "^5.9.3"
106
+ },
107
+ "lint-staged": {
108
+ "*.{ts,tsx,js,jsx,mts,cts,json}": [
109
+ "biome check --write"
110
+ ]
111
+ },
112
+ "bin": {
113
+ "side-quest-kit": "./src/mcp/index.ts"
114
+ }
115
+ }