forked from jdthorpe/kicad-module-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 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
{
"name": "kicad-to-json",
"version": "1.3.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": "Jason Thorpe",
"keywords": [
"kicad",
"json",
"yaml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jdthorpe/kicad-module-parser.git"
},
"license": "MIT",
"scripts": {
"build": "run-s build:module build:symbol build:package",
"build:module": "pegjs -o src/module-parser.js --allowed-start-rules module,board ./src/module.pegjs",
"build:symbol": "pegjs -o src/symbol-parser.js --allowed-start-rules kicad_symbol_lib ./src/symbol.pegjs",
"build:package": "tsup",
"check": "tsc -b -noEmit",
"clean": "rm -rf lib dist",
"watch": "run-p watch:package watch:test",
"watch:package": "tsup --watch",
"watch:test": "tsx watch --clear-screen=false ./test/index.ts",
"test": "tsx test/index.ts",
"test:symbols": "tsx test/symbol-test.ts",
"test:modules": "tsx test/module-test.ts",
"test:boards": "tsx test/board-test.ts",
"test:parse": "tsx test/parse-test.ts"
},
"devDependencies": {
"@types/argparse": "2.0.10",
"@types/fs-extra": "9.0.1",
"@types/js-yaml": "4.0.2",
"@types/klaw": "3.0.1",
"@types/node": "25.2.0",
"@types/through2": "2.0.36",
"npm-run-all": "4.1.5",
"pegjs": "0.10.0",
"prettier": "3.2.5",
"prettier-plugin-pegjs": "2.0.2",
"tsup": "8.3.5",
"tsx": "4.19.1",
"typescript": "5.9.2"
},
"dependencies": {
"ajv": "8.6.2",
"argparse": "2.0.1",
"chalk": "4.1.2",
"fs-extra": "9.0.1",
"js-yaml": "4.1.0",
"klaw": "3.0.0",
"through2": "4.0.2"
},
"bin": {
"k2j": "./bin/k2j"
},
"prettier": {
"plugins": [
"prettier-plugin-pegjs"
]
},
"packageManager": "pnpm@9.15.4"
}