-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.6 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.6 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
66
67
68
69
70
71
{
"name": "@squarecloud/api",
"version": "3.8.0",
"description": "A NodeJS wrapper for Square Cloud API",
"type": "module",
"main": "./lib/src.cjs",
"module": "./lib/src.mjs",
"types": "./lib/src.d.mts",
"exports": {
".": {
"import": {
"types": "./lib/src.d.mts",
"default": "./lib/src.mjs"
},
"require": {
"types": "./lib/src.d.cts",
"default": "./lib/src.cjs"
}
}
},
"files": [
"lib"
],
"packageManager": "pnpm@10.25.0",
"scripts": {
"release": "pnpm build && changeset publish",
"build": "tsdown ./src",
"check-types": "tsc --noEmit",
"lint": "biome check --write .",
"lint:ci": "biome check .",
"test": "node --experimental-strip-types --test test/*.test.ts"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@changesets/cli": "^2.29.8",
"@squarecloud/api-types": "^0.6.0",
"@types/node": "^25.0.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"tsdown": "^0.18.3",
"typescript": "^5.9.3"
},
"keywords": [
"wrapper",
"square",
"squarecloud",
"api",
"typescript",
"app",
"bot",
"website",
"host"
],
"author": {
"name": "joaotonaco",
"url": "https://github.com/joaotonaco"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squarecloudofc/sdk-api-js.git"
},
"bugs": {
"url": "https://github.com/squarecloudofc/sdk-api-js/issues"
},
"homepage": "https://docs.squarecloud.app/sdks/js/client",
"license": "MIT"
}