forked from tracespace/tracespace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.14 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.14 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
{
"name": "@tracespace/cli",
"publishConfig": {
"access": "public"
},
"version": "5.0.0-alpha.0",
"description": "Use Gerber/drill files to render a PCB to SVG from the command line.",
"bin": {
"tracespace": "./bin/cli.js"
},
"types": "lib/index.d.ts",
"exports": {
"types": "./lib/index.d.ts",
"source": "./src/index.ts",
"import": "./dist/tracespace-cli.js"
},
"files": [
"bin",
"dist",
"lib",
"src",
"!**/__tests__/**"
],
"type": "module",
"sideEffects": false,
"scripts": {
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tracespace/tracespace.git",
"directory": "packages/cli"
},
"keywords": [
"pcb",
"gerber",
"excellon",
"drill",
"circuit",
"hardware",
"electronics"
],
"contributors": [
"Mike Cousins <mike@cousins.io> (https://mike.cousins.io)"
],
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"@tracespace/core": "workspace:*",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/common-prefix": "^1.1.0",
"@types/yargs": "^17.0.18"
}
}