-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 KB
/
package.json
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
{
"name": "pads-layout-parser",
"version": "0.1.0",
"description": "A TypeScript library for parsing PADS Layout ASCII netlist files (.asc)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "npm run build",
"doc": "typedoc src/** --plugin typedoc-material-theme --themeColor '#cb9820' --out docs src"
},
"keywords": [
"pads",
"layout",
"netlist",
"parser",
"typescript",
"real-time",
"pcb",
"schematic"
],
"author": "Alexander Salas Bastidas <ajsb85@firechip.dev>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.2"
},
"files": [
"dist/**/*"
],
"dependencies": {
"typedoc-material-theme": "^1.2.0"
}
}