forked from Talentir/datev-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
47
{
"name": "@talentir/datev-typescript",
"version": "0.0.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"description": "",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"build": "tsup",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"files": ["dist"],
"keywords": ["bun"],
"license": "MIT",
"homepage": "https://github.com/maxam2017/bun-lib-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/maxam2017/bun-lib-starter.git"
},
"bugs": "https://github.com/maxam2017/bun-lib-starter/issues",
"author": "maxam2017 <whk0313@gmail.com>",
"devDependencies": {
"@biomejs/biome": "latest",
"@types/bun": "latest",
"dts-bundle-generator": "latest",
"semantic-release": "latest",
"tsup": "latest",
"typescript": "latest"
},
"release": {
"branches": ["main"]
},
"dependencies": {
"dayjs": "^1.11.18",
"zod": "^4.1.5"
}
}