@spatulox/simplediscordbot 1.2.0 → 1.5.0
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/package.json +5 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spatulox/simplediscordbot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"author": "Spatulox",
|
|
5
5
|
"description": "Simple discord bot framework to set up a bot under 30 secondes",
|
|
6
6
|
"exports": {
|
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
},
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"scripts": {
|
|
13
|
-
"
|
|
13
|
+
"type-check": "tsc --noEmit",
|
|
14
|
+
"build": "npm run type-check && tsup",
|
|
15
|
+
"dev": "npm run type-check && tsx watch src/test/index.ts",
|
|
14
16
|
"patch": "npm run build && npm version patch",
|
|
15
17
|
"minor": "npm run build && npm version minor",
|
|
16
18
|
"major": "npm run build && npm version major",
|
|
17
19
|
"pub:patch": "npm run patch && npm publish --access public",
|
|
18
20
|
"pub:minor": "npm run minor && npm publish --access public",
|
|
19
|
-
"pub:major": "npm run major && npm publish --access public"
|
|
20
|
-
"test-pack": "npm run patch && npm publish --access public",
|
|
21
|
-
"dev": "nodemon --exec tsx src/test/index.ts"
|
|
21
|
+
"pub:major": "npm run major && npm publish --access public"
|
|
22
22
|
},
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"dependencies": {
|
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
"@types/node": "^22.14.0",
|
|
30
30
|
"@types/node-schedule": "^2.1.7",
|
|
31
31
|
"dotenv": "^17.2.4",
|
|
32
|
-
"nodemon": "^3.1.9",
|
|
33
32
|
"tsup": "^8.5.1",
|
|
34
33
|
"tsx": "^4.20.3",
|
|
35
34
|
"typescript": "^5.9.3"
|