-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 747 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 747 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
33
34
35
{
"name": "hatchlet",
"type": "module",
"version": "0.0.4",
"description": "A tiny template string logger with structured output",
"author": "Thomas Ankcorn",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ankcorn/hatchlet.git"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"lint": "biome check",
"lint:fix": "biome check --write"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}