-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 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
48
49
50
{
"name": "@dovca/toolbox",
"version": "0.0.46",
"description": "A set of general-purpose typescript functions for common tasks.",
"author": "david@ovcacik.xyz",
"homepage": "https://github.com/dovca/toolbox",
"license": "LGPL-3.0-or-later",
"type": "module",
"packageManager": "bun",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"build": "tsup",
"test": "bun test --bail",
"generate-barrels": "barrelsby --delete -d ./src",
"prepublishOnly": "bun run build"
},
"files": [
"dist"
],
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": true,
"clean": true,
"minify": true,
"format": [
"cjs",
"esm"
],
"dts": true
},
"devDependencies": {
"@types/bun": "^1.0.2",
"barrelsby": "^2.8.1",
"bun": "^1.0.23",
"eslint": "^9.2.0",
"husky": "^9.0.10",
"string-ts": "^2.0.0",
"tsup": "^8.2.4",
"typescript": "latest",
"typescript-eslint": "^7.8.0"
}
}