-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
{
"name": "@internxt/sdk",
"author": "Internxt <hello@internxt.com>",
"version": "1.15.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 tsconfig.tsbuildinfo",
"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"
},
"devDependencies": {
"@internxt/eslint-config-internxt": "2.0.1",
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
"@types/node": "25.2.3",
"@vitest/coverage-istanbul": "4.0.18",
"@vitest/spy": "4.0.18",
"eslint": "9.39.2",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"openapi-typescript": "7.12.0",
"prettier": "3.8.1",
"rimraf": "6.1.2",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"dependencies": {
"axios": "1.13.5",
"internxt-crypto": "0.0.13"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}