-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "WireToucan",
"description": "O WireToucan é um aplicativo para planejamento e simulação de circuitos eletrônicos OpenSource.",
"version": "1.0.0",
"type": "module",
"main": "index.html",
"author": "Marcus Maia",
"license": "MIT",
"keywords": [
"eletronic",
"circuit",
"drawing",
"simulation",
"app"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marcusagm/WireToucan.git"
},
"bugs": {
"url": "https://github.com/marcusagm/WireToucan/issues"
},
"homepage": "https://github.com/marcusagm/WireToucan#readme",
"devDependencies": {
"@eslint/js": "^9.38.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.4.0",
"prettier": "^3.6.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write \"**/*.{js,json,md}\""
}
}