-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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": "img-processing-sdk",
"version": "1.3.0",
"description": "SDK for image processing",
"keywords": [
"img processing",
"image processing",
"api",
"sdk"
],
"homepage": "https://img-processing.com",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "biome check --write",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"test": "dotenvx run -- vitest",
"prepublish": "npm run build",
"publish": "changeset version && changeset publish"
},
"bugs": {
"url": "https://github.com/img-processing/node-sdk/issues"
},
"author": "IMG Processing <[email protected]> (https://img-processing.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/img-processing/node-sdk.git"
},
"files": [
"dist"
],
"type": "module",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@dotenvx/dotenvx": "^1.14.1",
"typescript": "5.6.2",
"vitest": "2.0.5"
},
"dependencies": {
"@arethetypeswrong/cli": "^0.16.2",
"@changesets/cli": "^2.27.8",
"file-type": "^19.5.0",
"ky": "1.7.2"
}
}