-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.95 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
{
"name": "devcanvas",
"version": "0.1.0",
"description": "Visual documentation and collaboration browser extension for engineering students",
"main": "dist/background.js",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,json}\"",
"type-check": "tsc --noEmit",
"generate-docs": "npx ts-node src/cli/index.ts generate --path src --output docs/architecture.mmd"
},
"keywords": [
"chrome-extension",
"diagram",
"documentation",
"collaboration",
"mermaid",
"markdown",
"github"
],
"author": "DevCanvas Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/roshankumar0036singh/DevCanvas.git"
},
"bugs": {
"url": "https://github.com/roshankumar0036singh/DevCanvas/issues"
},
"homepage": "https://github.com/roshankumar0036singh/DevCanvas#readme",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.22.0",
"@babel/preset-typescript": "^7.23.0",
"@types/chrome": "^0.0.254",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-loader": "^9.1.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.1",
"css-loader": "^6.8.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"path-browserify": "^1.0.1",
"prettier": "^3.0.0",
"process": "^0.11.10",
"sharp": "^0.34.5",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.0",
"vm-browserify": "^1.1.2",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"@langchain/textsplitters": "^1.0.1",
"@monaco-editor/react": "^4.6.0",
"@pinecone-database/pinecone": "^7.0.0",
"@types/dagre": "^0.7.53",
"@types/marked": "^5.0.2",
"commander": "^14.0.3",
"dagre": "^0.8.5",
"dotenv": "^17.2.4",
"glob": "^13.0.2",
"highlight.js": "^11.11.1",
"html-to-image": "^1.11.13",
"lucide-react": "^0.563.0",
"marked": "^17.0.1",
"mermaid": "^10.9.5",
"plantuml-encoder": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.11.4"
}
}