diff options
| author | Reiner Herrmann <reiner@reiner-h.de> | 2026-01-10 18:45:29 +0100 |
|---|---|---|
| committer | Reiner Herrmann <reiner@reiner-h.de> | 2026-01-10 18:46:14 +0100 |
| commit | 0aac353f636126a809a4b3c521d64e576682019c (patch) | |
| tree | 277bbecbb6a2c4e1ba0d0e967e75d3cf61b54833 /package.json | |
initial commit
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 83 |
1 files changed, 83 insertions, 0 deletions
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" + ] + } + ] + } + } +} |
