-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "collapsedrop",
"version": "1.1.0",
"description": "BYOLLM — Context injection for the AI age. Give users copy-paste context for their favorite LLM.",
"main": "dist/collapsedrop.js",
"module": "dist/collapsedrop.esm.js",
"types": "dist/collapsedrop.d.ts",
"style": "dist/collapsedrop.css",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run build:js && npm run build:css",
"build:js": "esbuild src/collapsedrop.js --bundle --minify --outfile=dist/collapsedrop.min.js && node -e \"require('fs').copyFileSync('src/collapsedrop.js','dist/collapsedrop.js')\"",
"build:css": "node -e \"require('fs').copyFileSync('src/collapsedrop.css','dist/collapsedrop.css')\"",
"dev": "live-server examples --port=3000",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/collapseindex/collapsedrop.git"
},
"keywords": [
"llm",
"ai",
"context",
"chatgpt",
"claude",
"widget",
"byollm",
"documentation",
"faq",
"copy-paste"
],
"author": "Alex Kwon / Collapse Index Labs <ask@collapseindex.org>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/collapseindex/collapsedrop/issues"
},
"homepage": "https://github.com/collapseindex/collapsedrop#readme",
"devDependencies": {
"esbuild": "^0.19.0",
"live-server": "^1.2.2"
}
}