-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.16 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
{
"name": "ic-lib",
"version": "1.10.0",
"author": "Jason Yang",
"description": "IC Component Library Management System - PCB parts library with inventory management, vendor integration, and ECO workflow",
"license": "LicenseRef-IC-Lib-1.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jasonyang-ee/IC-Lib.git"
},
"keywords": [
"pcb",
"component-library",
"inventory-management",
"allegro",
"orcad",
"electronics",
"parts-library",
"vendor-integration",
"eco"
],
"homepage": "https://github.com/jasonyang-ee/IC-Lib#readme",
"bugs": {
"url": "https://github.com/jasonyang-ee/IC-Lib/issues"
},
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"build": "npm run build:client",
"build:client": "cd client && npm run build",
"lint:fix": "cd client && npm run lint:fix && cd ../server && npm run lint:fix"
},
"engines": {
"node": ">=25.0.0",
"npm": ">=10.0.0"
}
}