This repository was archived by the owner on Oct 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.31 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
{
"name": "@samhwang/ts-starter-template",
"version": "1.0.0",
"description": "TypeScript Starter Template",
"engines": {
"node": "^22.0.0",
"pnpm": "^10.0.0"
},
"packageManager": "pnpm@10.18.2",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"start": "vite-node bin/index.ts",
"build": "tsdown",
"prepublishOnly": "pnpm run build",
"typecheck": "tsc",
"test": "vitest run",
"test:watch": "vitest watch",
"test:CI": "pnpm run test && pnpm run typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:fix:unsafe": "biome check --write --unsafe .",
"ci": "biome ci ."
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@types/node": "^22.18.10",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.1.7",
"lint-prepush": "^3.0.2",
"lint-staged": "^16.2.4",
"tsdown": "^0.15.6",
"typescript": "^5.9.3",
"vite-node": "^3.2.4",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild"
]
}
}