-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.59 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
{
"name": "edacation",
"description": "Library and CLI for interacting with Yosys and nextpnr.",
"license": "MIT",
"version": "0.6.4",
"contributors": [
"Danielle Huisman <danielle@huisman.me> (https://github.com/DanielleHuisman)",
"Mike Almeloo <git@mikealmel.ooo> (https://github.com/DismissedGuy)"
],
"repository": "github:EDAcation/edacation",
"keywords": [
"edacation",
"cli",
"yosys",
"nextpnr"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"systemd",
"LICENSE.md",
"README.md",
"package.json"
],
"bin": "./dist/cli/index.js",
"scripts": {
"lint": "eslint ./src --ext ts",
"clean": "rm -rf dist",
"build": "yarn run clean && yarn run lint && tsc",
"prepare": "yarn run build",
"dev": "node --loader ts-node/esm src/cli/index.ts"
},
"dependencies": {
"string-args-parser": "^1.0.4",
"yargs": "^18.0.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20.14.8",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.0.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}