-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 845 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 845 Bytes
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
{
"name": "@statsify/api-client",
"version": "0.0.0",
"main": "dist/index.js",
"types": "src/index.ts",
"type": "module",
"scripts": {
"build": "swc src --config-file ../../.swcrc --out-dir dist --strip-leading-paths",
"test:types": "tsc --noEmit",
"lint": "eslint"
},
"dependencies": {
"@nestjs/common": "^11.1.6",
"@nestjs/swagger": "^11.2.0",
"@sentry/node": "^10.39.0",
"@statsify/rendering": "workspace:^",
"@statsify/schemas": "workspace:^",
"@statsify/util": "workspace:^",
"@swc/helpers": "^0.5.12",
"axios": "^1.11.0"
},
"imports": {
"#exceptions": {
"types": "./src/exceptions/index.ts",
"default": "./dist/exceptions/index.js"
},
"#responses": {
"types": "./src/responses/index.ts",
"default": "./dist/responses/index.js"
}
}
}