-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 887 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 887 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
32
33
34
35
{
"name": "contextflow",
"version": "0.6.0",
"description": "ContextFlow — map ChatGPT threads as a navigable Q&A graph (Chrome extension).",
"type": "module",
"scripts": {
"build": "node build.cjs",
"build:watch": "node build.cjs --watch",
"build:release": "node build.cjs --release",
"release": "node scripts/release.js",
"dev": "npm run build:watch",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{js,jsx,json,css,html}\""
},
"keywords": [
"chatgpt",
"chrome-extension",
"graph",
"visualization"
],
"author": "Cynthia387",
"license": "MIT",
"dependencies": {
"@xyflow/react": "^12.0.0",
"dagre": "^0.8.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"archiver": "^7.0.1",
"esbuild": "^0.28.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0"
}
}