-
-
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.52 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.52 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": "circuit-sketcher-obsidian-plugin",
"version": "1.3.2",
"main": "main.js",
"author": "Code Forge Temple",
"license": "GPL",
"description": "A plugin for Obsidian to draw circuits on a canvas, based on circuit-sketcher-core.",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run lint && npm run typecheck && webpack --stats-error-details",
"lint": "eslint ."
},
"keywords": [],
"dependencies": {
"circuit-sketcher-core": "github:code-forge-temple/circuit-sketcher-core",
"obsidian": "^1.7.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"cpx2": "^8.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"postcss-url": "^10.1.3",
"raw-loader": "^4.0.2",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-preprocessor-loader": "^1.3.0"
}
}