-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
60
61
62
63
64
65
66
{
"name": "typescript-starter",
"version": "1.0.0",
"description": "A minimal, modern TypeScript starter template with testing, linting, formatting, logging, and environment config built-in.",
"main": "./dist/index.js",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"clear": "rimraf dist",
"build": "pnpm run clear && pnpm run build:tsc",
"build:tsc": "tsc",
"build:tsup": "tsup",
"start:dev": "cross-env NODE_ENV=development tsx --watch src/index.ts",
"start:prod": "npm run build && cross-env NODE_ENV=production node dist/index.js",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"check": "biome check --write --no-errors-on-unmatched",
"lint": "biome lint --write",
"format": "biome format --write",
"test": "jest"
},
"keywords": [],
"author": "maanimis",
"license": "MIT",
"packageManager": "pnpm@10.12.4",
"files": [
"dist"
],
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@biomejs/biome": "2.3.1",
"@types/config": "3.3.5",
"@types/jest": "30.0.0",
"@types/node": "24.9.1",
"babel-jest": "30.2.0",
"cspell": "9.2.2",
"globals": "16.4.0",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.2.6",
"rimraf": "6.0.1",
"tsup": "8.5.0",
"tsx": "4.20.6",
"typescript": "5.9.3"
},
"dependencies": {
"config": "4.1.1",
"cross-env": "10.1.0",
"pino": "10.1.0",
"pino-pretty": "13.1.2",
"zod": "4.1.12"
}
}