forked from dwmkerr/chatgpt-diagrams-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.31 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
{
"name": "deepseek-diagrams",
"version": "0.1.3",
"description": "Enhance the ChatGPT website to allow diagrams to be presented inline.",
"type": "module",
"scripts": {
"start": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --ignore-unknown --write .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:debug": "NODE_OPTIONS=--experimental-vm-modules node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"tsc": "tsc",
"prepare": "husky install"
},
"license": "MIT",
"lint-staged": {
"**/*": "npm run prettier:fix",
"**/*.{js,ts}": "npm run lint:fix"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@jest/globals": "^29.7.0",
"@parcel/config-webextension": "^2.8.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/chrome": "^0.0.236",
"@types/d3": "^7.4.0",
"@types/dompurify": "^3.0.2",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.1",
"@types/node": "^22.12.0",
"@types/plantuml-encoder": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"chrome-extension-manifest-webpack-plugin": "^1.0.8",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.2.0",
"jsdom": "^22.0.0",
"lint-staged": "^13.2.2",
"parcel": "^2.8.3",
"prettier": "2.8.8",
"rollup": "^3.20.2",
"rollup-plugin-chrome-extension": "^3.6.12",
"terser-webpack-plugin": "^5.3.11",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"install": "^0.13.0",
"mermaid": "^10.1.0",
"plantuml-encoder": "^1.4.0"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}