From 0aac353f636126a809a4b3c521d64e576682019c Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Sat, 10 Jan 2026 18:45:29 +0100 Subject: initial commit --- package.json | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..5e5b73a --- /dev/null +++ b/package.json @@ -0,0 +1,83 @@ +{ + "name": "c64", + "author": "Reiner Herrmann", + "version": "0.1.0", + "keywords": ["pebble-app"], + "private": true, + "dependencies": {}, + "pebble": { + "displayName": "C=64", + "uuid": "ca4c3839-9b6d-469a-ba3b-7864b3a1f53c", + "sdkVersion": "3", + "enableMultiJS": false, + "targetPlatforms": [ + "aplite", + "basalt", + "diorite", + "emery", + "flint" + ], + "watchapp": { + "watchface": true + }, + "messageKeys": [ + "dummy" + ], + "resources": { + "media": [ + { + "menuIcon": true, + "type": "png", + "name": "IMAGE_MENU_ICON", + "file": "images/C64-logo.png" + }, + { + "characterRegex": "[0-9:]", + "type": "font", + "name": "FONT_COMMODORE_58", + "file": "fonts/BA67.ttf", + "compatibility": "2.8", + "targetPlatforms":[ + "emery" + ] + }, + { + "characterRegex": "[A-Za-z0-9 *.:%]", + "type": "font", + "name": "FONT_COMMODORE_16", + "file": "fonts/BA67.ttf", + "compatibility": "2.8", + "targetPlatforms":[ + "emery" + ] + }, + { + "characterRegex": "[0-9:]", + "type": "font", + "name": "FONT_COMMODORE_48", + "file": "fonts/BA67.ttf", + "compatibility": "2.8", + "targetPlatforms":[ + "aplite", + "basalt", + "diorite", + "flint" + ] + }, + { + "characterRegex": "[A-Za-z0-9 *.:%]", + "type": "font", + "name": "FONT_COMMODORE_15", + "file": "fonts/BA67.ttf", + "compatibility": "2.8", + "targetPlatforms":[ + "aplite", + "basalt", + "diorite", + "flint" + ] + } + ] + } + } +} -- cgit v1.2.3