-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 856 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
{
"name": "lifxlan",
"version": "0.0.62",
"description": "LIFX LAN protocol in JavaScript",
"types": "./types/index.d.ts",
"module": "./src/index.js",
"main": "./src/index.js",
"type": "module",
"unpkg": "./dist/lifxlan.min.js",
"scripts": {
"test": "node --test --experimental-test-coverage",
"types": "rm -rf ./types && tsc",
"build": "bun build ./src/index.js --outdir ./dist --minify --entry-naming [dir]/lifxlan.min.[ext]"
},
"keywords": [
"lifx",
"lan"
],
"files": [
"src/**/*",
"types/**/*",
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jmmoser/lifxlan.git"
},
"author": "Justin Moser",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"typescript": "^5.6.2"
}
}