-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.82 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@flyimg/flyimg.js",
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"description": "Interact with a Flyimg endpoint: build URLs with the needed transformations options.",
"license": "MIT",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepare": "npm run build",
"dev": "tsc -w -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "npm run typecheck",
"verify": "npm run lint && npm test && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"build:browser": "esbuild src/client.ts --bundle --format=esm --outfile=example/vendor/flyimg-client.js",
"example:serve": "npx --yes http-server example -c-1 -p 5173",
"example:dev": "node --env-file=.env example/server.mjs",
"example:dev:flyimg": "FLYIMG_URL=http://localhost:8088 node example/server.mjs"
},
"keywords": [
"flyimg",
"image",
"resize",
"crop",
"rotate",
"filter",
"blur",
"sharpen",
"unsharp",
"face-crop"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.7.5",
"conventional-changelog-conventionalcommits": "^7.0.2",
"esbuild": "^0.23.1",
"express": "^5.1.0",
"semantic-release": "^24.0.0",
"typescript": "^5.6.3",
"vitest": "^2.1.1"
}
}