-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "@internxt/lib",
"version": "1.4.1",
"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 src/**/*.ts",
"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.0.1",
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
"@types/node": "24.10.0",
"@vitest/coverage-istanbul": "4.0.6",
"eslint": "9.39.1",
"husky": "9.1.7",
"prettier": "3.6.2",
"typescript": "5.9.3",
"vitest": "4.0.6"
},
"dependencies": {
"uuid": "^11.1.0"
}
}