-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "@mapbox/tiny-sdf",
"version": "2.0.6",
"description": "Browser-side SDF font generator",
"type": "module",
"main": "index.js",
"exports": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"pretest": "eslint index.js index.html test",
"test": "node --test",
"start": "st --no-cache --localhost --index index.html ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/tiny-sdf.git"
},
"keywords": [
"sdf",
"signed distance fields",
"font",
"canvas",
"text",
"distance transform"
],
"author": "Vladimir Agafonkin",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mapbox/tiny-sdf/issues"
},
"homepage": "https://github.com/mapbox/tiny-sdf#readme",
"files": [
"index.d.ts"
],
"devDependencies": {
"canvas": "2.11.2",
"eslint": "^9.5.0",
"eslint-config-mourner": "^4.0.1",
"eslint-plugin-html": "^8.1.1",
"pixelmatch": "^6.0.0",
"pngjs": "^7.0.0",
"st": "^3.0.0"
}
}