-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 746 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "tinyfont",
"version": "1.3.1",
"description": "Tiniest possible pixel font for your js games (suitable for js13k)",
"main": "dist/tinyfont-font-pixel.min.js",
"repository": "https://github.com/darkwebdev/tinyfont.js.git",
"author": "Timur Manyanov",
"license": "MIT",
"scripts": {
"trans": "rm -rf dist && yarn rollup -c",
"build:pixel": "yarn terser dist/index.js dist/pixel.js -o dist/tinyfont-font-pixel.min.js --config-file .terser.json",
"build:tiny": "yarn terser dist/index.js dist/tiny.js -o dist/tinyfont-font-tiny.min.js --config-file .terser.json",
"build": "yarn trans && yarn build:pixel && yarn build:tiny"
},
"devDependencies": {
"rollup": "^1.21.2",
"terser": "^4.3.0"
}
}