vimcord 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +94 -0
- package/dist/index.cjs +878 -727
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +294 -186
- package/dist/index.d.ts +294 -186
- package/dist/index.js +874 -727
- package/dist/index.js.map +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +54 -54
package/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
},
|
|
17
|
-
"./package.json": "./package.json"
|
|
2
|
+
"name": "vimcord",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "A powerful Discord.js wrapper.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "xsqu1znt",
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.cjs",
|
|
15
|
+
"default": "./dist/index.js"
|
|
18
16
|
},
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
"./package.json": "./package.json"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"axios": "^1.13.2",
|
|
25
|
+
"chalk": "^4.1.2",
|
|
26
|
+
"discord.js": "^14.25.1",
|
|
27
|
+
"dotenv": "^16.6.1",
|
|
28
|
+
"lodash": "^4.17.21",
|
|
29
|
+
"node-cron": "^4.2.1",
|
|
30
|
+
"qznt": "^1.0.34"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/lodash": "^4.17.21",
|
|
34
|
+
"@types/node": "^22.19.2",
|
|
35
|
+
"mongoose": "^8.20.2",
|
|
36
|
+
"prettier": "^3.7.4",
|
|
37
|
+
"tsup": "^8.5.1",
|
|
38
|
+
"type-fest": "^4.41.0",
|
|
39
|
+
"typescript": "^5.9.3"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"discord.js": "^14.0.0",
|
|
43
|
+
"mongoose": "^8.0.0"
|
|
44
|
+
},
|
|
45
|
+
"peerDependenciesMeta": {
|
|
46
|
+
"discord.js": {
|
|
47
|
+
"optional": false
|
|
27
48
|
},
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
"chalk": "^4.1.2",
|
|
31
|
-
"discord.js": "^14.25.1",
|
|
32
|
-
"dotenv": "^16.6.1",
|
|
33
|
-
"jstools": "github:xsqu1znt/jsTools",
|
|
34
|
-
"lodash": "^4.17.21",
|
|
35
|
-
"node-cron": "^4.2.1"
|
|
36
|
-
},
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@types/lodash": "^4.17.21",
|
|
39
|
-
"@types/node": "^22.19.2",
|
|
40
|
-
"mongoose": "^8.20.2",
|
|
41
|
-
"prettier": "^3.7.4",
|
|
42
|
-
"tsup": "^8.5.1",
|
|
43
|
-
"type-fest": "^4.41.0",
|
|
44
|
-
"typescript": "^5.9.3"
|
|
45
|
-
},
|
|
46
|
-
"peerDependencies": {
|
|
47
|
-
"discord.js": "^14.0.0",
|
|
48
|
-
"mongoose": "^8.0.0"
|
|
49
|
-
},
|
|
50
|
-
"peerDependenciesMeta": {
|
|
51
|
-
"discord.js": {
|
|
52
|
-
"optional": false
|
|
53
|
-
},
|
|
54
|
-
"mongoose": {
|
|
55
|
-
"optional": true
|
|
56
|
-
}
|
|
49
|
+
"mongoose": {
|
|
50
|
+
"optional": true
|
|
57
51
|
}
|
|
58
|
-
}
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsup",
|
|
55
|
+
"check": "tsc --noEmit",
|
|
56
|
+
"format": "prettier --write \"./**/*.{ts,json}\""
|
|
57
|
+
}
|
|
58
|
+
}
|