-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"author": "Stephen Niedzielski <stephen@oidoid.com> (https://oidoid.com)",
"bugs": "https://github.com/oidoid/mem/issues",
"description": "proportional and monospaced sans light pixel font family.",
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@oidoid/config": "0.0.3",
"esbuild": "0.27.2",
"typescript": "5.9.3"
},
"engines": {
"node": ">=24.0"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/",
"!dist/tsconfig.tsbuildinfo"
],
"homepage": "https://rndmem.com",
"keywords": [
"font",
"ttf",
"pixel",
"monospaced",
"fixed-width",
"proportional",
"8-bit",
"retro",
"fontforge",
"aseprite",
"game",
"minimal",
"sans"
],
"license": "AGPL-3.0-only",
"name": "mem-font",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oidoid/mem.git"
},
"scripts": {
"build": "tsc --build && make --directory=tools/ --no-print-directory build",
"clean": "rm -rf dist/",
"preversion": "[ -z \"$(git status -z)\" ]",
"prepublishOnly": "! git symbolic-ref --quiet HEAD || git push --follow-tags origin \"$(git branch --show-current)\"",
"start": "make --directory=tools/ --no-print-directory watch",
"test": "lint && npm run build",
"version": "npm test && git add dist/"
},
"type": "module",
"version": "11.0.0-10"
}