@codespeak/helper 0.0.0 → 0.1.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/README.md +33 -0
- package/bin/run.js +16 -0
- package/dist/index.js +5031 -0
- package/package.json +45 -7
package/package.json
CHANGED
|
@@ -1,7 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@codespeak/helper",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Share your vibe-coded project and AI coding sessions",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"helper": "./bin/run.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"bin",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"genversion": "node -e \"const v=require('./package.json').version;require('fs').writeFileSync('src/version.ts','export const CLI_VERSION=\\''+v+'\\';\\n')\"",
|
|
16
|
+
"prebuild": "npm run genversion",
|
|
17
|
+
"predev": "npm run genversion",
|
|
18
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node22 --format=esm --outfile=dist/index.js --external:node:* --external:child_process --external:fs --external:path --external:os --external:readline --external:http --external:stream --external:crypto --external:url --external:module",
|
|
19
|
+
"dev": "NODE_OPTIONS='--experimental-sqlite' tsx src/index.ts",
|
|
20
|
+
"prepublishOnly": "npm run build"
|
|
21
|
+
},
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"registry": "https://registry.npmjs.org",
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"author": "CodeSpeak <info@codespeak.dev> (https://codespeak.dev)",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/codespeak-dev/app.codespeak.dev.git"
|
|
30
|
+
},
|
|
31
|
+
"license": "Apache-2.0",
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=22.6.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/node": "^22.0.0",
|
|
37
|
+
"esbuild": "^0.21.0",
|
|
38
|
+
"fflate": "^0.8.2",
|
|
39
|
+
"gpt-tokenizer": "^3.4.0",
|
|
40
|
+
"ignore": "^7.0.5",
|
|
41
|
+
"tsx": "^4.0.0",
|
|
42
|
+
"typescript": "^5.7.0"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {}
|
|
45
|
+
}
|