generated from stscoundrel/node-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 KB
/
package.json
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": "typescript-template",
"version": "1.0.0",
"description": "Template repo for generic TypeScript / Node.js library with tests, lint and CI",
"repository": "https://github.com/stscoundrel/typescript-template.git",
"author": "stscoundrel <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/bun": "latest",
"@types/node": "^20.8.0",
"prettier": "^3.3.3",
"typescript": "^5.2.2"
},
"scripts": {
"prettier:fix": "prettier src tests --write",
"prettier:check": "prettier src tests --check",
"biome:check": "bunx biome lint src tests",
"biome:fix": "bunx biome lint --write src tests",
"lint": "bun run prettier:check && bun run biome:check",
"build": "bun tsc",
"prepublishOnly": "npm run build",
"test:coverage": "bun run test --coverage"
}
}