forked from the-via/keyboards
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.13 KB
/
package.json
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
{
"name": "via-keyboards",
"version": "0.1.0",
"description": "",
"bin": {
"via-keyboards": "./bin/cli.js"
},
"scripts": {
"build": "ts-node scripts/build-all.ts",
"build-v3": "ts-node scripts/build-v3.ts",
"build-names": "ts-node scripts/build-names.ts",
"prettify-all": "prettier --write ./src ./v3",
"prettify-staged": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-via/keyboards.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/the-via/keyboards/issues"
},
"homepage": "https://github.com/the-via/keyboards#readme",
"devDependencies": {
"@types/node": "^18.14.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"simple-git-hooks": "^2.8.1"
},
"dependencies": {
"@the-via/reader": "^1.8.0",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.1",
"@types/rimraf": "^3.0.2",
"fs-extra": "^11.1.0",
"json-stringify-pretty-compact": "^3.0.0",
"ts-node": "10.9.1",
"typescript": "^4.9.5"
},
"simple-git-hooks": {
"pre-commit": "npm run prettify-staged"
}
}