-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.01 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
{
"name": "@softnetics/what-the-dep",
"version": "2.2.1",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"license": "MIT",
"homepage": "https://github.com/softnetics/what-the-dep",
"bugs": {
"url": "https://github.com/softnetics/what-the-dep"
},
"repository": {
"type": "git",
"url": "https://github.com/softnetics/what-the-dep.git"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"dependencies-injection",
"type-safe",
"bun"
],
"author": {
"name": "Patcharapol Sankaew",
"email": "meen.sankaew@gmail.com",
"url": "https://softnetics.tech"
},
"scripts": {
"build": "tsup",
"test": "bun test"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"bun-types": "latest",
"@changesets/cli": "^2.27.1",
"tsup": "^8.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"type": "module",
"dependencies": {
"bun": "^1.0.20"
},
"publishConfig": {
"access": "public"
}
}