-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
52
{
"name": "esbuild-typescript-library-template",
"version": "3.0.3",
"description": "Typescript Esbuild Library Template",
"keywords": [
"cjs",
"dts",
"esbuild",
"esm",
"library",
"template",
"typescript"
],
"homepage": "https://github.com/spa5k/esbuild-typescript-library-template#readme",
"bugs": {
"url": "https://github.com/spa5k/esbuild-typescript-library-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spa5k/esbuild-typescript-library-template.git"
},
"license": "MIT",
"author": "spa5k",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "cross-env NODE_ENV=production tsup-node",
"build:dev": " cross-env NODE_ENV=development tsup-node",
"coverage": "vitest run --coverage",
"dev": "node-dev dist/main.js",
"format": "biome format --write",
"lint": "biome lint",
"test:watch": "vitest",
"test": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/node": "20.14.9",
"cross-env": "^7.0.3",
"esbuild": "0.22.0",
"lefthook": "^1.6.18",
"tslib": "2.6.3",
"tsup": "8.1.0",
"typescript": "5.5.2",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]"
}