-
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.49 KB
/
package.json
File metadata and controls
59 lines (59 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
54
55
56
57
58
59
{
"name": "@internxt/inxt-js",
"author": "Internxt <hello@internxt.com>",
"version": "3.1.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"clean": "rimraf dist build coverage",
"build": "yarn clean && tsc",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "eslint ./src",
"lint:fix": "yarn run lint --fix",
"cli": "ts-node --files src/cli/index.ts",
"format": "prettier --write src/**/*.{js,jsx,tsx,ts} tests/**/*.{js,jsx,tsx,ts}",
"prepare": "husky"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@internxt/eslint-config-internxt": "2.0.1",
"@internxt/prettier-config": "internxt/prettier-config#v2.0.0",
"@types/archiver": "7.0.0",
"@types/async": "3.2.9",
"@types/express": "5.0.6",
"@types/node": "25.6.0",
"@vitest/coverage-istanbul": "4.1.4",
"archiver": "7.0.1",
"commander": "14.0.3",
"dotenv": "17.4.1",
"eslint": "9.39.2",
"express": "5.2.1",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.2",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"uuid": "14.0.0",
"vitest": "4.1.4"
},
"dependencies": {
"@internxt/lib": "1.4.1",
"@internxt/sdk": "1.15.10",
"async": "3.2.6",
"axios": "1.15.2",
"bip39": "3.1.0",
"undici": "7.24.4",
"winston": "3.19.0"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}