-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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": "sourcebin",
"version": "5.0.0",
"description": "Fast and simple package to get and create bins from https://sourceb.in/",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "tsm node_modules/uvu/bin.js tests \".*\\.test\\.ts\"",
"dev": "nodemon dev/index.js",
"docs": "typedoc src/index.ts",
"build": "tsup-node"
},
"license": "MIT",
"dependencies": {
"@sourcebin/linguist": "^0.0.3",
"axios": "^0.27.2"
},
"devDependencies": {
"@types/node": "^18.7.14",
"nodemon": "^2.0.19",
"tsm": "^2.2.2",
"tsup": "^6.2.3",
"typedoc": "^0.23.14",
"typescript": "^4.8.2",
"uvu": "^0.5.6"
},
"keywords": [
"sourcebin",
"bin",
"bin wrapper",
"sourcebin wrapper",
"source",
"source bin",
"sourcebin api",
"sourcebin api wrapper",
"sourcebin create",
"sourcebin get"
],
"author": "GHOST",
"homepage": "https://github.com/ghostdevv/sourcebin",
"repository": {
"type": "git",
"url": "git+https://github.com/ghostdevv/sourcebin"
},
"bugs": {
"url": "https://github.com/ghostdevv/sourcebin"
}
}