forked from unitedss/curzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
52
53
{
"name": "@uniteds/curzy",
"version": "1.0.4",
"description": "Library to create a quick and easy discord bot",
"module": "src/index.ts",
"type": "module",
"author": "Unitedss",
"license": "MIT",
"keywords": ["discord-bot", "generator", "curzy"],
"repository": {
"type": "git",
"url": "https://github.com/unitedss/curzy.git"
},
"homepage": "https://github.com/unitedss/curzy",
"bugs": "https://github.com/unitedss/curzy/issues",
"files": ["dist/**/*"],
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"release": "semantic-release",
"lint": "biome lint --write src/**/*.ts",
"fmt": "biome format --write .",
"build": "tsup"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "latest",
"@types/node": "^22.0.2",
"dotenv": "^16.4.5",
"install": "^0.13.0",
"lefthook": "^1.7.11",
"semantic-release": "^24.0.0",
"tsup": "^8.2.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"publishConfig": {
"access": "public"
}
}