-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "i-razer",
"version": "1.0.0",
"description": "Get the bests of your razer devices on your mac.",
"main": "src/index.ts",
"repository": "https://github.com/Galitan-dev/iRazer",
"author": "Galitan-dev <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"base-x": "^4.0.0",
"node-addon-api": "^5.0.0",
"system-input": "^0.7.0",
"tinycolor2": "^1.4.2",
"tsconfig-paths": "^4.1.0"
},
"devDependencies": {
"@types/node": "^18.8.5",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"node-gyp": "^8.2.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"gypfile": true,
"scripts": {
"dev": "nodemon -r ts-node",
"lint:ts": "eslint --ext \".js,.ts\" --ignore-path .gitignore",
"lint:prettier": "prettier --config .prettierrc 'src/**/*.?s' --check",
"lint": "yarn lint:ts && yarn lint:prettier",
"lint:fix": "yarn lint:ts --fix && yarn lint:prettier --write",
"build": "yarn tsc"
}
}