-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 981 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
{
"name": "@embedded-js/wifi-connection-manager",
"description": "A wifi connection manager for Embedded JS that supports multiple networks and auto-reconnect.",
"version": "1.0.1",
"type": "module",
"main": "dist/index.js",
"author": {
"name": "Andréas HANSS",
"email": "[email protected]"
},
"license": "MIT",
"keywords": ["wifi", "connection", "manager", "embedded-js", "iot"],
"repository": {
"type": "git",
"url": "https://github.com/ScreamZ/wifi-connection-manager"
},
"scripts": {
"build": "tsup",
"ci": "tsc && pnpm run build && biome check && pnpm run check-exports",
"format": "biome check --write",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"prepublishOnly": "pnpm run ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.9",
"@moddable/typings": "^5.2.0",
"tsup": "^8.3.5",
"type-fest": "^4.27.0",
"typescript": "^5.6.3"
}
}