-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 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
55
56
57
58
59
{
"name": "@internxt/inxt-js",
"author": "Internxt <hello@internxt.com>",
"version": "3.2.1",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"clean": "rimraf dist build coverage",
"build": "yarn clean && tsc -p tsconfig.build.json",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"cli": "ts-node --files src/cli/index.ts",
"========== Code style ==========": "",
"type-check": "tsc",
"lint": "eslint src tests",
"lint:fix": "yarn run lint --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"find-deadcode": "knip",
"prepare": "husky"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@internxt/eslint-config-internxt": "^2.1.0",
"@internxt/prettier-config": "^2.0.1",
"@types/async": "=3.2.9",
"@types/node": "^25.6.0",
"@vitest/coverage-istanbul": "^4.1.5",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"eslint": "^10.3.0",
"husky": "^9.1.7",
"knip": "^6.13.1",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"@internxt/sdk": "1.16.2",
"async": "^3.2.6",
"axios": "^1.16.0",
"bip39": "^3.1.0",
"undici": "^7.25.0",
"winston": "^3.19.0"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}