-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
46 lines (46 loc) · 1.22 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": "pureimage",
"version": "0.4.18",
"description": "Pure JS image drawing API based on Canvas. Export to PNG, JPG, and streams.",
"author": {
"name": "Josh Marinacci",
"email": "[email protected]",
"url": "https://joshondesign.com/"
},
"files": [
"dist/*"
],
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.esm.js",
"main": "./dist/index.cjs",
"browser": "./dist/browser.js",
"repository": {
"type": "git",
"url": "https://github.com/joshmarinacci/node-pureimage.git"
},
"dependencies": {
"jpeg-js": "^0.4.4",
"opentype.js": "^0.4.3",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/opentype.js": "^1.3.6",
"esbuild": "^0.18.19",
"npm-dts": "^1.3.12",
"typescript": "^5.1.6",
"vitest": "^0.34.2"
},
"scripts": {
"test": "npm run vitest && npm run type-check",
"vitest": "vitest run --dir test --reporter=junit --outputFile=test-output.xml",
"build": "node build.js",
"type-check": "tsc",
"clean": "rm -rf dist/ output/ *.tgz",
"release": "npm run clean && npm run build && npm run test && npm version patch && npm publish"
},
"engines": {
"node": ">=14.19.0"
},
"license": "MIT"
}