-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.72 KB
/
package.json
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
58
59
60
61
62
63
64
{
"author": "Stephen Niedzielski <[email protected]> (https://oidoid.com)",
"bugs": "https://github.com/oidoid/mem/issues",
"description": "Proportional and monospaced sans light pixel font family.",
"devDependencies": {
"esbuild": "0.20.2",
"prettier": "3.2.5",
"typescript": "5.4.2"
},
"engines": {
"node": ">=18"
},
"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",
"main": "dist/index.js",
"name": "mem-font",
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"jsxSingleQuote": true,
"proseWrap": "always",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"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",
"format": "npm run formatter -- --write",
"formatter": "prettier --cache --log-level warn './**/*.{css,html,json,md,ts,yaml}'",
"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": "npm run test:format && npm run build",
"test:format": "npm run formatter -- --check",
"version": "npm test && git add dist"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "11.0.0-2"
}