-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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": "karabiner-forge-ts",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"version": "git add -A src",
"postversion": "git push",
"build": "npx tsc -p tsconfig.json",
"start": "node dist/index.js",
"lint": "npx eslint --fix 'src/**/*.ts' './jest.config.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nik-kita/karabiner-forge-ts"
},
"author": "https://github.com/nik-kita nik.moiseienko@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/nik-kita/karabiner-forge-ts/issues"
},
"homepage": "https://github.com/nik-kita/karabiner-forge-ts#readme",
"keywords": [],
"dependencies": {
"dotenv": "^16.0.3"
},
"devDependencies": {
"@jest/types": "^29.3.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}