-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.29 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
51
52
{
"name": "@germondai/ts-utils",
"version": "0.1.2",
"description": "Germond's TypeScript Utilities",
"repository": {
"type": "git",
"url": "git+https://github.com/germondai/ts-utils.git"
},
"author": "germondai",
"license": "MIT",
"keywords": [
"typescript",
"utilities",
"utils",
"helpers",
"type-utils",
"string-utils",
"array-utils",
"object-utils"
],
"type": "module",
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.js",
"require": "./dist/module.js"
}
},
"main": "./dist/module.js",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"prepack": "bun run build",
"build": "bun build --target=node ./src/module.ts --outfile=dist/module.js && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"release": "bun fmt && bun prepack && changelogen --release && bun publish && git push --follow-tags",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check . --write"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@types/bun": "^1.3.14"
},
"peerDependencies": {
"typescript": "^7.0.2"
}
}