-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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": "razer-chroma-sdk",
"description": "Functionality to access the Razer Chroma SDK using it's RESTful API",
"version": "0.0.2",
"author": {
"name": "Benjamin P. Jung",
"email": "[email protected]"
},
"homepage": "https://github.com/cathive/razer-chroma-js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cathive/razer-chroma-js.git"
},
"keywords": [
"chroma",
"razer",
"razer-chroma"
],
"bugs": {
"url": "https://github.com/cathive/razer-chroma-js/issues"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc",
"postcompile": "webpack",
"build": "npm -s run compile",
"prepublish": "npm -s run build",
"test": "jest"
},
"main": "lib/main-node",
"browser": "dist/razer-chroma.web.dist.js"
}