-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 839 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 839 Bytes
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
{
"name": "@relatiohq/utils",
"version": "1.0.1",
"description": "@relatiohq/utils is a package of utility functions used by Relatio products",
"author": "@relatiohq",
"license": "MIT",
"main": "dist",
"typings": "dist",
"repository": {
"type": "git",
"url": "git+https://github.com/relatiocc/utils.git"
},
"scripts": {
"prepublishOnly": "pnpm lint && pnpm test && pnpm build",
"build": "tsc",
"test": "vitest run",
"lint": "eslint",
"format": "pnpm exec prettier . --write"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^20.14.11",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"prettier": "3.3.3",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1",
"vitest": "^2.0.3"
}
}