-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.5 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "svelteesp32",
"version": "1.7.0",
"description": "Convert Svelte (or any frontend) JS application to serve it from ESP32 webserver (PsychicHttp)",
"author": "BCsabaEngine",
"license": "ISC",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"files": [
"bin/*.js",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"bin": {
"svelteesp32": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BCsabaEngine/svelteesp32.git"
},
"bugs": {
"url": "https://github.com/BCsabaEngine/svelteesp32/issues"
},
"homepage": "https://github.com/BCsabaEngine/svelteesp32",
"scripts": {
"dev:async": "nodemon src/index.ts -- -e async -s ./demo/svelte/dist -o ./demo/esp32/include/svelteesp32.h --etag=true --gzip=true --cachetime=86400 --version=v$npm_package_version",
"dev:psychic": "nodemon src/index.ts -- -e psychic -s ./demo/svelte/dist -o ./demo/esp32/include/svelteesp32.h --etag=false --gzip=false --version=v$npm_package_version",
"dev:psychic2": "nodemon src/index.ts -- -e psychic2 -s ./demo/svelte/dist -o ./demo/esp32/include/svelteesp32.h --etag=false --gzip=false --version=v$npm_package_version",
"test:all": "./package.script && ~/.platformio/penv/bin/pio run -d ./demo/esp32",
"clean": "tsc --build --clean",
"build": "tsc --build --clean && tsc --build --force",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"fix": "npm run format:fix && npm run lint:fix && npm run format:fix",
"npm:reinstall": "rm -rf ./node_modules && rm -f ./package-lock.json && npm i && npm i"
},
"keywords": [
"svelte",
"angular",
"react",
"vue",
"eps32",
"esp8266",
"webserver",
"psychichttpserver",
"psychichttpserverV2",
"espasyncwebserver"
],
"devDependencies": {
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"glob": "^11.0.0",
"handlebars": "^4.7.8",
"mime": "^4.0.6",
"ts-command-line-args": "^2.5.1"
}
}