-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "typescript-starter",
"version": "1.0.0",
"private": true,
"description": "My personal TypeScript starter template.",
"keywords": [
"typescript",
"starter"
],
"bugs": {
"url": "https://github.com/jonahsnider/typescript-starter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonahsnider/typescript-starter.git"
},
"license": "Apache-2.0",
"author": {
"name": "Jonah Snider",
"email": "jonah@jonahsnider.com",
"url": "https://jonahsnider.com"
},
"type": "module",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check . --apply-unsafe",
"build": "rm -rf dist && tsc",
"format": "prettier --check .",
"format:write": "prettier --check . --write",
"test": "vitest --run --typecheck",
"test:coverage": "vitest --run --typecheck --coverage"
},
"prettier": "@jonahsnider/prettier-config",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@jonahsnider/prettier-config": "1.1.2",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/node": "20.17.14",
"@vitest/coverage-v8": "2.1.8",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.8",
"tsx": "4.19.2",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"packageManager": "bun@1.0.31"
}