-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.81 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.81 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
{
"name": "@freik/arduino2proj",
"version": "1.0.0",
"description": "Arduino platform and library to Makefile conversion tool",
"type": "module",
"module": "./lib/ar2mak.js",
"repository": "https://github.com/kevinfrei/Arduino2Make.git",
"author": "Kevin Frei <[email protected]>",
"license": "MIT",
"bin": "./lib/ar2mak.js",
"files": ["lib/ar2mak.js"],
"scripts": {
"release": "bun build --entrypoints ./src/ar2mak.ts --outdir ./lib --target bun --minify",
"dbg": "bun build --entrypoints ./src/ar2mak.ts --outdir ./lib --target bun",
"clean": "bun run scripts/clean.ts",
"format": "tools format bun",
"prepare": "bun run husky",
"test": "bun test",
"watch": "bun test --watch",
"chk": "bun run typechk && bun run clean && bun run release && bun run lint && bun test",
"typechk": "tsc --noEmit -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint --config eslint.config.mjs --fix src/**/*.ts",
"pre-commit": "bun run format",
"pre-push": "bun run chk",
"graph": "bun run madge --image graph.svg --extensions ts src/ar2mak.ts",
"graphnt": "bun run madge --image graph.svg --extensions ts --exclude '.*[Tt]ypes.[jt]s$' src/ar2mak.ts"
},
"dependencies": {
"@freik/typechk": "^0.8.4",
"minimist": "^1.2.8"
},
"devDependencies": {
"@freik/files": "^0.3.4",
"@freik/workspace": "^0.6.5",
"@types/bun": "^1.2.17",
"@types/minimist": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"husky": "^9.1.7",
"madge": "^8.0.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
},
"packageManager": "[email protected]"
}