forked from jorgeclaro/lifxware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 997 Bytes
/
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": "@doubleedesign/lifxware",
"description": "Typescript implementation of the LIFX protocol",
"version": "0.1.24",
"type": "module",
"contributors": ["Jorge Claro <jmc.claro@gmail.com>", "Leesa Ward <leesa@doubleedesign.com.au>"],
"repository": {
"type": "git",
"url": "https://github.com/doubleedesign/lifxware.git"
},
"scripts": {
"build": "rm -rf dist && npx tsc",
"build:watch": "rm -rf dist && npx tsc -w",
"lint": "npx eslint src --ext ts",
"prepublishOnly": "npm run build"
},
"main": "dist/client.js",
"types": "dist/client.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=8"
},
"license": "MIT",
"dependencies": {
"@types/lodash": "4.14.202",
"@types/node": "20.10.4",
"from-exponential": "1.1.1",
"lodash": "4.17.21",
"ts-node": "10.9.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.8.0",
"pre-commit": "1.2.2",
"typescript": "5.3.3"
}
}