Devin Leamy 2023-10-28 13:35:17 -04:00
parent 1d96447e3d
commit d2d6ad7ec1
3 changed files with 16 additions and 18 deletions

View File

@ -1,2 +1,2 @@
# espruino-ts-quickstart # BangleJS 2 Multi-Timer
Quickstart for Espruino using typescript and Visual Studio Code IDE To time _multiple_ things.

View File

@ -1,10 +1,10 @@
{ {
"id": "stopwatch", "id": "multi-timer",
"name": "Stopwatch Touch", "name": "Multi Timer",
"version": "0.05", "version": "0.01",
"description": "A touch based stop watch for Bangle JS 2", "description": "A stopwatch with multiple modes for Bangle JS 2",
"icon": "stopwatch.png", "icon": "stopwatch.png",
"screenshots": [{"url":"screenshot1.png"},{"url":"screenshot2.png"},{"url":"screenshot3.png"}], "screenshots": [],
"tags": "tools,app", "tags": "tools,app",
"supports": ["BANGLEJS2"], "supports": ["BANGLEJS2"],
"readme": "README.md", "readme": "README.md",
@ -12,7 +12,5 @@
{ "name": "stopwatch.app.js", "url": "stopwatch.app.js" }, { "name": "stopwatch.app.js", "url": "stopwatch.app.js" },
{ "name": "stopwatch.img", "url": "stopwatch.icon.js", "evaluate": true } { "name": "stopwatch.img", "url": "stopwatch.icon.js", "evaluate": true }
], ],
"data": [ "data": [{ "name": "timer.json" }]
{"name":"stopwatch.json"}
]
} }

View File

@ -1,16 +1,16 @@
{ {
"name": "espruino-ts-quickstart", "name": "multi-timer",
"version": "1.0.0", "version": "1.0.0",
"description": "Quickstart for Espruino using typescript and Visual Studio Code IDE", "description": "A stop-watch with several modes, for the BangleJS",
"main": "app.js", "main": "app.js",
"repository": { "repository": {
"url": "https://github.com/stasberkov/espruino-ts-quickstart" "url": "https://github.com/DevinLeamy/BangleJS-Multi-Timer"
}, },
"scripts": { "scripts": {
"build": "tsc ./src/app.ts" "build": "tsc ./src/app.ts"
}, },
"author": "Stanislav Berkov", "author": "Devin Leamy",
"license": "ISC", "license": "MIT",
"dependencies": { "dependencies": {
"@types/espruino": "^1.94", "@types/espruino": "^1.94",
"espruino": "^0.1", "espruino": "^0.1",