-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.56 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
{
"name": "msdf-gpu",
"version": "1.2.0",
"main": "lib/index.js",
"dependencies": {
"@rgba-image/lanczos": "^0.1.0",
"better-sqlite3": "^8.0.1",
"canvas": "^2.11.2",
"fast-xml-parser": "^3.19.0",
"flow-bin": "^0.151.0",
"node-addon-api": "^8.0.0",
"opentype.js": "^1.3.3",
"pbf": "^3.2.1",
"pngjs": "^6.0.0",
"sharp": "^0.33.2",
"single-line-log": "^1.1.2",
"svg-path-parser": "^1.1.0"
},
"scripts": {
"test": "pnpm run build:node && vitest --watch=false --config=\"./vitest.config.ts\"",
"test:watch": "vitest --watch=true --config=\"./vitest.config.ts\"",
"lint": "eslint --ext .ts lib/ test/ --fix",
"clean": "node-gyp clean",
"ship": "pnpmx wrangler@d1 d1 execute GLYPHS --file=./builtGlyphsTmp/merged.glyphs",
"build": "npm run build:cpp && npm run build:node",
"build:cpp": "node-gyp configure && CXXFLAGS=\"-frtti -I/usr/include/freetype2\" node-gyp build",
"build:node": "rm -rf ./dist && mkdir ./dist && tsc -p tsconfig.json && cp ./lib/schema.sql ./dist/schema.sql"
},
"gypfile": true,
"author": "Craig O'Connor",
"license": "NOT LICENSED YET",
"description": "",
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/opentype.js": "^1.3.8",
"@types/pngjs": "^6.0.4",
"@types/single-line-log": "^1.1.2",
"@types/svg-path-parser": "^1.1.6",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"ts-standard": "^12.0.2",
"typescript": "^5.4.3",
"vitest": "^1.2.0"
}
}