-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "configarr",
"version": "0.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/raydak-labs/configarr.git"
},
"type": "module",
"scripts": {
"build": "tsx esbuild.ts",
"coverage": "vitest run --coverage",
"generateApi": "tsx generate-api.ts && prettier src/__generated__ --write",
"lint": "prettier --log-level error --check .",
"lint:fix": "prettier --list-different --write --log-level error .",
"start": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"release": "release-it"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "17.3.1",
"fast-glob": "3.3.3",
"ky": "1.14.3",
"pino": "10.3.1",
"pino-pretty": "13.1.3",
"simple-git": "3.33.0",
"tsx": "4.21.0",
"yaml": "2.8.3",
"zod": "4.3.6"
},
"devDependencies": {
"@hyrious/esbuild-plugin-commonjs": "0.2.6",
"@playwright/test": "1.58.2",
"@release-it/conventional-changelog": "10.0.6",
"@types/node": "24.12.0",
"@vitest/coverage-v8": "4.1.2",
"esbuild": "0.27.4",
"prettier": "3.8.1",
"release-it": "19.2.4",
"swagger-typescript-api": "13.6.5",
"typescript": "6.0.2",
"vitest": "4.1.2"
}
}