main
parent
1d96447e3d
commit
d2d6ad7ec1
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"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",
|
||||
|
|
@ -12,7 +12,5 @@
|
|||
{ "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" }]
|
||||
}
|
||||
|
|
|
|||
10
package.json
10
package.json
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue