-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
54
55
56
57
58
59
60
{
"name": "@jaspermayone/logger",
"description": "Oooooh! Logs! Shiny!",
"version": "1.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json",
"pnpm-lock.yaml"
],
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jasper Mayone <[email protected]>",
"maintainers": [
{
"name": "Jasper Mayone",
"email": "[email protected]",
"url": "https://jaspermayone.com"
}
],
"keywords": [],
"dependencies": {
"@slack/web-api": "^7.2.0",
"async": "^3.2.5",
"bottleneck": "^2.19.5",
"colors": "^1.4.0"
},
"devDependencies": {
"@swc/core": "1.6.7-nightly-20240703.2",
"@types/async": "^3.2.24",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaspermayone/logger.git"
},
"bugs": {
"url": "https://github.com/jaspermayone/logger/issues"
},
"homepage": "https://github.com/jaspermayone/logger#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true
}
}