-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 KB
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": "shareimage",
"version": "5.1.0",
"description": "Generate Social Media Preview Images from templates.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"repository": "https://GitHub.com/Zype-Z/ShareImage.js",
"author": "Zype Inc. <rajdeep@zype.cf>",
"scripts": {
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "tsup src/index.ts --format cjs,esm --dts --clean --shims --tsconfig tsconfig.json",
"prepack": "npm run build",
"semantic-release": "semantic-release"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "^24.0.0",
"conventional-changelog-eslint": "6.1.0",
"semantic-release": "25.0.3",
"tsup": "^8.0.0"
},
"dependencies": {
"canvas": "^3.0.0",
"typescript": "^6.0.0"
},
"files": [
"dist/*.{ts|mjs|js}",
"CHANGELOG.md",
"README.md",
"LICENSE",
"assets/**/*.{ttf|woff|woff2}"
]
}