-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "@internxt/lib",
"version": "1.4.2",
"description": "Common logic shared between different projects of Internxt ",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:cov": "vitest run --coverage",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "prettier --write **/*.{js,jsx,tsx,ts,cjs,mjs,mts,json}",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internxt/lib.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/internxt/lib/issues"
},
"homepage": "https://github.com/internxt/lib#readme",
"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",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {},
"lint-staged": {
"*.{js,jsx,tsx,ts,cjs,mjs,mts,json}": [
"prettier --write"
]
}
}