-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.98 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.98 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
88
89
90
91
92
{
"name": "@intelligentelectron/universal-netlist",
"version": "0.1.3",
"description": "MCP server for netlist parsing and circuit analysis",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./service": {
"types": "./dist/service/index.d.ts",
"default": "./dist/service/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"bin": {
"universal-netlist": "./dist/index.js"
},
"scripts": {
"setup": "git submodule update --init --recursive",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"type-check": "tsc --noEmit -p tsconfig.check.json",
"lint": "eslint \"src/**/*.ts\" \"scripts/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"scripts/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist bin",
"compile": "bun build --compile --minify --define BUILD_VERSION=\"\\\"$(node -p 'require(\"./package.json\").version')\\\"\" src/index.ts --outfile bin/universal-netlist",
"compile:darwin-arm64": "bun build --compile --minify --target=bun-darwin-arm64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\"./package.json\").version')\\\"\" src/index.ts --outfile bin/universal-netlist-darwin-arm64",
"compile:darwin-x64": "bun build --compile --minify --target=bun-darwin-x64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\"./package.json\").version')\\\"\" src/index.ts --outfile bin/universal-netlist-darwin-x64",
"compile:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\"./package.json\").version')\\\"\" src/index.ts --outfile bin/universal-netlist-linux-arm64",
"compile:linux-x64": "bun build --compile --minify --target=bun-linux-x64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\"./package.json\").version')\\\"\" src/index.ts --outfile bin/universal-netlist-linux-x64",
"compile:windows-x64": "bun build --compile --minify --target=bun-windows-x64 --define BUILD_VERSION=\"\\\"$(node -p 'require(\"./package.json\").version')\\\"\" src/index.ts --outfile bin/universal-netlist-windows-x64.exe",
"compile:darwin-universal": "npm run compile:darwin-arm64 && npm run compile:darwin-x64 && lipo -create bin/universal-netlist-darwin-arm64 bin/universal-netlist-darwin-x64 -output bin/universal-netlist-darwin-universal",
"compile:all": "npm run compile:darwin-arm64 && npm run compile:darwin-x64 && npm run compile:linux-arm64 && npm run compile:linux-x64 && npm run compile:windows-x64 && lipo -create bin/universal-netlist-darwin-arm64 bin/universal-netlist-darwin-x64 -output bin/universal-netlist-darwin-universal",
"prepublishOnly": "npm run type-check && npm run lint && npm test && npm run build"
},
"keywords": [
"mcp",
"netlist",
"circuit",
"cadence",
"altium",
"eda"
],
"author": "Valentino Zegna <valentino.zegna@gmail.com> (https://github.com/IntelligentElectron)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/IntelligentElectron/universal-netlist.git"
},
"bugs": {
"url": "https://github.com/IntelligentElectron/universal-netlist/issues"
},
"homepage": "https://github.com/IntelligentElectron/universal-netlist#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^22.15.21",
"eslint": "^9.18.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.53.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
}
}