-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.38 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
45
46
47
48
49
50
51
52
53
54
{
"name": "hue-sync",
"version": "0.1.5",
"description": "A Library for Phillips Hue Clip API v2 written in Typescript",
"main": "build/index.js",
"scripts": {
"test": "jest src",
"lint": "prettier -w src",
"clean": "rm -rf build",
"declarations": "tsc",
"transpile": "swc src -d build",
"build": "npm run clean && npm run transpile && npm run declarations",
"publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdmg94/Hue-Sync.git"
},
"author": "José Muñoz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jdmg94/Hue-Sync/issues"
},
"homepage": "https://github.com/jdmg94/Hue-Sync",
"devDependencies": {
"@swc-node/jest": "^1.6.7",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.78",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.1",
"browserslist": "^4.21.10",
"fetch-mock": "^9.11.0",
"jest": "^29.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.0.2",
"swc-loader": "^0.2.3",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"node-dns-sd": "^1.0.1",
"node-dtls-client": "^1.1.1"
},
"peerDependencies": {
"cross-fetch": "^4.0.0"
},
"peerDependenciesMeta": {
"cross-fetch": {
"optional": true
}
}
}