-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "@internxt/sdk",
"author": "Internxt <hello@internxt.com>",
"version": "1.16.3",
"description": "An sdk for interacting with Internxt's services",
"repository": {
"type": "git",
"url": "git+https://github.com/internxt/sdk.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/internxt/sdk/issues"
},
"homepage": "https://github.com/internxt/sdk#readme",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"clean": "rimraf dist coverage",
"build": "yarn clean && tsc",
"lint": "eslint ./src",
"format": "prettier --write **/*.{js,jsx,tsx,ts}",
"swagger": "openapi-typescript https://gateway.internxt.com/drive/api-json -o ./src/schema.ts && yarn format",
"swagger:mail": "openapi-typescript http://localhost:3100/api-json -o ./src/mail/schema.ts && yarn format"
},
"devDependencies": {
"@internxt/eslint-config-internxt": "^2.1.0",
"@internxt/prettier-config": "^2.0.1",
"@types/node": "^25.6.0",
"@vitest/coverage-istanbul": "^4.1.5",
"eslint": "^10.3.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"axios": "^1.16.0"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}