-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
54
55
{
"name": "@dicelette/core",
"version": "1.9.1",
"description": "Core library for the Dicelette Discord bot",
"repository": {
"type": "git",
"url": "git+https://github.com/Dicelette/core.git"
},
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"build": "tsup",
"prerelease": "npm run build",
"lint": "biome format --write src",
"tsc": "tsc --noEmit --skipLibCheck",
"release": "commit-and-tag-version",
"postrelease": "git push --follow-tags origin main && pnpm publish"
},
"keywords": [
"discord",
"roll",
"library",
"bot",
"typescript"
],
"author": "Mara-Li",
"license": "GPL-3.0-only",
"dependencies": {
"@dice-roller/rpg-dice-roller": "^5.5.0",
"mathjs": "^14.0.0",
"moment": "^2.30.1",
"random-js": "^2.1.0",
"remove-accents": "^0.5.0",
"ts-dedent": "^2.2.0",
"uniformize": "^2.2.0",
"vite-tsconfig-paths": "^5.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.1.14",
"commit-and-tag-version": "^12.5.0",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-json-schema": "^0.65.1",
"zod-to-json-schema": "^3.23.5"
}
}