-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
74 lines (74 loc) · 1.71 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
65
66
67
68
69
70
71
72
73
74
{
"name": "freetype2",
"version": "1.0.6",
"description": "FreeType bindings for Node.js.",
"main": "./index.js",
"types": "./module.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ericfreese/node-freetype2"
},
"keywords": [
"freetype",
"font",
"webfont",
"parse",
"sfnt",
"ttf",
"otf",
"woff",
"truetype",
"opentype"
],
"author": "Julian Waller, Amin Yahyaabadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericfreese/node-freetype2/issues"
},
"homepage": "https://github.com/ericfreese/node-freetype2",
"scripts": {
"install": "node-gyp-build",
"vendor": "ts-node ./vendor/download-freetype.ts",
"prebuild": "prebuildify --napi --strip --tag-libc",
"clean": "node-gyp clean",
"build": "node-gyp configure && node-gyp build",
"test": "jest",
"dev": "watch 'printf \"\\033[2J\\033[0f\" && pnpm build && pnpm test --watch' src spec"
},
"binary": {
"napi_versions": [
3
]
},
"engines": {
"node": ">=12"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^4.3.0",
"node-gyp-build": "^4.4.0"
},
"devDependencies": {
"@types/decompress": "^4.2.4",
"@types/download": "^8.0.1",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.24",
"ajv": "^8.11.0",
"decompress": "^4.2.1",
"decompress-tarxz": "^3.0.0",
"download": "^8.0.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.1",
"jest": "^27.5.1",
"prebuildify": "^5.0.0",
"sharp": "^0.30.3",
"ts-json-schema-generator": "^1.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"pnpm": {
"overrides": {
"lzma-native": "8.0.6"
}
}
}