-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "typelegend",
"version": "0.2.2",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"up": "bun run generate && bun run generateDoc && bun run build",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"lint": "tsc",
"generate": "bun tools/generateIndex.ts",
"generateDoc": "bun tools/generateDocs.ts",
"prepublish": "bun run up",
"test": "bun test --coverage --coverage-reporter lcov"
},
"description": "Empowering TypeScript Developers with Essential Utilities",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0pilatos0/TypeLegend.git"
},
"keywords": [
"utils"
],
"author": "0pilatos0",
"license": "MIT",
"bugs": {
"url": "https://github.com/0pilatos0/TypeLegend/issues"
},
"homepage": "https://github.com/0pilatos0/TypeLegend#readme",
"devDependencies": {
"@biomejs/biome": "1.8.2",
"bun-types": "latest",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}