-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
95 lines (95 loc) · 2.63 KB
/
deno.json
File metadata and controls
95 lines (95 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"name": "@zackiles/hypermix",
"version": "0.0.5",
"description": "Real-time, token-aware, intelligent repomixing of all your codebase and dependencies. Auto-integrations for Cursor, Claude, and Windsurf. Repoxmix for power-users and agentic engineering.",
"author": "Zachary Iles<zack.iles@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zackiles/hypermix"
},
"tasks": {
"dev": "deno run -A src/mod.ts",
"dev:example": "deno run -A src/mod.ts --config examples/hypermix.config.ts",
"check": "deno lint && deno check src/mod.ts",
"test": "deno test -A test/",
"tag": "deno run -A scripts/tag.ts",
"serve-docs": "deno run -A scripts/serve-docs.ts",
"build": "deno run -A scripts/build.ts",
"build:docs": "deno doc --html --name=Hypermix --output=./docs/hypermix src/**/*.ts"
},
"nodeModulesDir": "none",
"lock": true,
"unstable": [
"net",
"http",
"fs"
],
"imports": {
"@std/async": "jsr:@std/async@^1.0.13",
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
"@std/fmt": "jsr:@std/fmt@^1.0.8",
"@std/fs": "jsr:@std/fs@1",
"@std/http": "jsr:@std/http@1",
"@std/jsonc": "jsr:@std/jsonc@1",
"@std/net": "jsr:@std/net@1",
"@std/path": "jsr:@std/path@1",
"@std/assert": "jsr:@std/assert@1",
"@std/cli": "jsr:@std/cli@1",
"@qnighy/dedent": "jsr:@qnighy/dedent@^0.1.2",
"@std/semver": "jsr:@std/semver@1",
"@std/streams": "jsr:@std/streams@1",
"@std/testing": "jsr:@std/testing@1",
"@std/text": "jsr:@std/text@1",
"@valibot/valibot": "jsr:@valibot/valibot@^1.1.0",
"gpt-tokenizer": "npm:gpt-tokenizer@^2.9.0",
"jsonc-parser": "npm:jsonc-parser@^3.3.1"
},
"lint": {
"include": [
"deno.json",
"plugins/**/*.ts",
"src/**/*.ts",
"scripts/**/*.ts",
"test/**/*.ts",
"*.md"
],
"exclude": [
"scripts/postinstall.js",
"scripts/launcher.js",
"scripts/test-npm-package.js"
]
},
"fmt": {
"lineWidth": 80,
"useTabs": false,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve",
"semiColons": false,
"include": [
"deno.json",
"test/**/*.ts",
"src/**/*.ts",
"scripts/**/*.ts",
"*.md"
],
"exclude": [
"scripts/postinstall.js",
"scripts/launcher.js",
"scripts/test-npm-package.js"
]
},
"publish": {
"include": [
"src/**/**",
"README.md",
"deno.json",
"LICENSE"
]
},
"exports": {
".": "./src/mod.ts"
}
}