-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "@squarecloud/blob",
"private": false,
"version": "1.4.3",
"description": "Official Square Cloud Blob SDK for NodeJS",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.mjs",
"packageManager": "pnpm@10.15.0",
"scripts": {
"release": "pnpm build && changeset publish",
"build": "tsup ./src",
"lint": "biome check --write .",
"test": "tsx --env-file=.env",
"test:stats": "pnpm test ./test/stats.test.ts",
"test:list": "pnpm test ./test/list.test.ts",
"test:create": "pnpm test ./test/create.test.ts",
"test:delete": "pnpm test ./test/delete.test.ts",
"test:mime": "pnpm test ./test/mimetypes.test.ts"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@changesets/cli": "^2.29.7",
"@types/node": "^24.10.1",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"keywords": [
"squarecloud",
"square",
"cloud",
"sdk",
"blob",
"api",
"storage",
"s3"
],
"author": {
"name": "joaotonaco",
"url": "https://github.com/joaotonaco"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squarecloudofc/sdk-blob-js.git"
},
"bugs": {
"url": "https://github.com/squarecloudofc/sdk-blob-js/issues"
},
"homepage": "https://github.com/squarecloudofc/sdk-blob-js#readme",
"license": "MIT"
}