-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.06 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": "pico-portal",
"version": "1.2.1",
"author": "Cody Tolene <[email protected]>",
"description": "Raspbery Pi Pico Captive Portal",
"contributors": [],
"keywords": [
"Raspberry Pi",
"Pico",
"Captive",
"Portal"
],
"license": "CC-BY-NC-4.0",
"homepage": "https://www.lambda.guru",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/CodyTolene/Pico-Portal.git"
},
"bugs": {
"url": "https://github.com/CodyTolene/Pico-Portal/issues"
},
"engines": {
"node": "^20.13.1",
"npm": ">=10.5.2 <11"
},
"scripts": {
"build": "tsc",
"format": "python3 -m black src/",
"lint": "python3 -m flake8 --show-source --ignore E501 src/",
"lint:install": "python3 -m pip install -r requirements.txt",
"postinstall": "ts-node setup.ts"
},
"dependencies": {},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/node": "^22.5.1",
"adm-zip": "^0.5.16",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}