-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@squarecloud/blob",
"private": false,
"version": "1.2.0",
"description": "Official Square Cloud Blob SDK for NodeJS",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.mjs",
"scripts": {
"release": "npm run build && changeset publish",
"build": "run-s build:*",
"build:lint": "biome check .",
"build:ts": "tsup ./src",
"lint": "biome check --apply .",
"test": "node --env-file=.env -r ts-node/register",
"test:stats": "npm test ./test/stats.test.ts",
"test:list": "npm test ./test/list.test.ts",
"test:create": "npm test ./test/create.test.ts",
"test:delete": "npm test ./test/delete.test.ts",
"test:mime": "npm test ./test/mimetypes.test.ts",
"prepare": "husky"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.4",
"husky": "^9.0.11",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.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"
}