-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"name": "file-plz",
"version": "1.0.18",
"description": "Maker of files",
"main": "./src/main.ts",
"scripts": {
"start": "pnpm tsx ./src/main.ts -s 5mb -t jpg -d",
"build": "esbuild ./src/main.ts --bundle --platform=node --outfile=lib/index.js",
"test": "vitest"
},
"bin": {
"file-plz": "lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikaelPorttila/file-plz.git"
},
"keywords": [
"file",
"maker",
"mkfile",
"file",
"generator"
],
"author": "Mikael Porttila",
"license": "MIT",
"bugs": {
"url": "https://github.com/MikaelPorttila/file-plz/issues"
},
"homepage": "https://github.com/MikaelPorttila/file-plz#readme",
"dependencies": {
"archiver": "^7.0.1",
"jimp": "^1.6.0",
"pdf-lib": "^1.17.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"esbuild": "^0.24.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22.12.0"
}
}