-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"author": {
"name": "FancyStudio",
"url": "https://www.fancystudio.xyz"
},
"dependencies": {
"@discordeno/bot": "22.0.1-next.9eb5642"
},
"description": "A framework for building Discord applications using Discordeno",
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@commitlint/types": "20.5.0",
"@types/node": "25.6.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"rimraf": "6.1.3",
"typescript": "6.0.3"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./components": {
"import": "./dist/components/index.js",
"require": "./dist/components/index.js",
"types": "./dist/components/index.d.ts"
},
"./handlers": {
"import": "./dist/handlers/index.js",
"require": "./dist/handlers/index.js",
"types": "./dist/handlers/index.d.ts"
},
"./jsx-runtime": {
"import": "./dist/jsx-runtime.js",
"require": "./dist/jsx-runtime.js",
"types": "./dist/jsx-runtime.d.ts"
}
},
"files": [
"dist"
],
"imports": {
"#bot/*": "./dist/bot/*",
"#components/*": "./dist/components/*",
"#handlers/*": "./dist/handlers/*",
"#lib/*": "./dist/lib/*",
"#messages/*": "./dist/messages/*"
},
"license": "MIT",
"main": "dist/index.js",
"name": "ddenox",
"packageManager": "pnpm@10.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/FancyStudioTeam/DDenoX"
},
"scripts": {
"biome:check": "biome check",
"biome:ci": "biome ci",
"biome:write": "biome check --write",
"build": "tsc --project tsconfig.json",
"prebuild": "rimraf dist",
"prepack": "pnpm build",
"prepare": "husky"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.1.0"
}