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
Quickstart for Espruino using typescript and Visual Studio Code IDE
# BangleJS 2 Multi-Timer
To time _multiple_ things.

View File

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

View File

@ -1,16 +1,16 @@
{
"name": "espruino-ts-quickstart",
"name": "multi-timer",
"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",
"repository": {
"url": "https://github.com/stasberkov/espruino-ts-quickstart"
"url": "https://github.com/DevinLeamy/BangleJS-Multi-Timer"
},
"scripts": {
"build": "tsc ./src/app.ts"
},
"author": "Stanislav Berkov",
"license": "ISC",
"author": "Devin Leamy",
"license": "MIT",
"dependencies": {
"@types/espruino": "^1.94",
"espruino": "^0.1",