-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.template.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.template.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "PACKAGE_NAME",
"version": "0.1.0",
"type": "module",
"description": "PACKAGE_DESCRIPTION",
"homepage": "https://github.com/username/PACKAGE_NAME",
"repository": {
"type": "git",
"url": "git+https://github.com/username/PACKAGE_NAME.git"
},
"bugs": {
"url": "https://github.com/username/PACKAGE_NAME/issues"
},
"license": "MIT",
"author": {
"name": "User Name",
"email": "user@domain.com",
"url": "https://username.com"
},
"imports": {
"#*": "./*"
},
"scripts": {
"start": "bun src/index.ts",
"typecheck": "tsc",
"lint": "biome lint",
"format": "biome format",
"check": "biome check",
"fix": "biome check --write",
"test": "bun test",
"checks": "bun check && bun typecheck && bun run test",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@types/bun": "^1.3.14",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"typescript": "7.0.2"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}