-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.92 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.92 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
{
"name": "freikey",
"version": "1.0.0",
"repository": "https://github.com/kevinfrei/FreiKey.git",
"author": "Kevin Frei <kevinfrei@hotmail.com>",
"license": "MIT",
"scripts": {
"41": "cd src && make 41 && yarn fixcc",
"postinstall": "husky install",
"___": "putting stuff in here means you can run it from anywhere in the repo :)",
"format": "yarn ftool format",
"fixcc": "yarn node fix_compile_commands.js",
"__ ": "You can pass extra args in by doing 'yarn make -- <args>' - Actually, I don't think this works with the follow-on fixcc",
"make": "cd src && make && yarn fixcc",
"laptype": "cd src && make laptype && yarn fixcc",
"lt": "cd src && make laptype && yarn fixcc",
"ltf": "cd src && make laptypef && yarn fixcc",
"threepiece": "cd src && make threepiece && yarn fixcc",
"3pf": "cd src && make threepiecef && yarn fixcc",
"f3p": "cd src && make threepiecef && yarn fixcc",
"3p": "cd src && make threepiece && yarn fixcc",
"big": "cd src && make big && yarn fixcc",
"bigf": "cd src && make bigf && yarn fixcc",
"calc": "cd src && make calc && yarn fixcc",
"mock": "cd src && make mock && yarn fixcc",
"img": "cd src && make img && yarn fixcc",
"test": "cd src && make test && yarn fixcc",
"sd": "cd src && make sd && yarn fixcc",
"sdf": "cd src && make sdf && yarn fixcc",
"41f": "cd src && make 41f && yarn fixcc",
"clean": "cd src && make clean",
"cmake": "rimraf build && cmake -S src -B build -G Ninja -DCMAKE_TOOLCHAIN_FILE=tools/toolchains/Teensy40.cmake",
"build": "cd build && ninja",
"cfg": "yarn node src/tools/gen-makefiles.mjs"
},
"devDependencies": {
"@freik/arduino2proj": "^0.7.6",
"@freik/build-tools": "^3.6.10",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "5.4.5"
},
"packageManager": "yarn@4.2.1",
"dependencies": {
"@freik/typechk": "^0.5.11"
}
}