-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "@fnlb-project/shared",
"description": "FNLB Shared Library",
"version": "1.4.4",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun run build.ts",
"prepublishOnly": "bun run build",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome check --write .",
"lint:tsc": "bun tsc --noEmit",
"test": "bun run test/index.ts"
},
"author": "FNLB-Project",
"files": ["dist"],
"exports": {
"./commands": {
"types": "./dist/commands/index.d.ts",
"default": "./dist/commands/index.js"
},
"./errors": {
"types": "./dist/errors/index.d.ts",
"default": "./dist/errors/index.js"
},
"./http": {
"types": "./dist/http/index.d.ts",
"default": "./dist/http/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.js"
},
"./util": {
"types": "./dist/util/index.d.ts",
"default": "./dist/util/index.js"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.13",
"bun-plugin-dts": "^0.3.0",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"dependencies": {
"unique-names-generator": "^4.7.1"
}
}