-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 763 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 763 Bytes
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
{
"name": "beecoder",
"version": "1.0.1",
"main": "index.ts",
"type": "module",
"bin": {
"beecoder": "bin/beecoder.cjs"
},
"scripts": {
"start": "node --watch --experimental-strip-types index.ts start",
"build": "esbuild index.ts --bundle --platform=node --target=node22 --banner:js='#! /usr/bin/env node' --drop:console --outfile=bin/beecoder.cjs"
},
"keywords": [
"ai",
"copilot",
"pollinations"
],
"files": [
"bin",
"docs",
"README.md"
],
"homepage": "https://github.com/cemalgnlts/beecoder",
"author": "cemalgnlts",
"license": "SEE LICENSE IN LICENSE",
"description": "VSCode Copilot Pollinations Bridge",
"devDependencies": {
"@types/node": "^24.8.1",
"esbuild": "^0.25.11"
}
}