-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.63 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.63 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sourcebin",
"version": "6.0.1",
"description": "Fast and simple package to get and create bins from https://sourceb.in/",
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"sideEffects": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "node --no-warnings --experimental-strip-types --test",
"dev": "node --watch --no-warnings --experimental-strip-types dev/index.ts",
"build": "tsdown && publint",
"fix": "prettier --write . && oxlint --fix",
"check": "prettier --check . && oxlint && tsc --noEmit && publint",
"release": "changelogen --release"
},
"license": "MIT",
"dependencies": {
"@sourcebin/linguist": "^0.0.3"
},
"devDependencies": {
"@e18e/eslint-plugin": "^0.5.0",
"@rlly/pedantic": "^0.3.0",
"@types/node": "^22.13.17",
"changelogen": "^0.6.2",
"oxlint": "^1.66.0",
"oxlint-tsgolint": "^0.23.0",
"prettier": "^3.8.3",
"publint": "^0.3.21",
"tsdown": "^0.22.0",
"typescript": "^6.0.3"
},
"keywords": [
"sourcebin",
"bin",
"bin wrapper",
"sourcebin wrapper",
"source",
"source bin",
"sourcebin api",
"sourcebin api wrapper",
"sourcebin create",
"sourcebin get"
],
"author": "Willow GHOST <hello@willow.sh>",
"homepage": "https://github.com/ghostdevv/sourcebin",
"repository": {
"type": "git",
"url": "git+https://github.com/ghostdevv/sourcebin.git"
},
"bugs": {
"url": "https://github.com/ghostdevv/sourcebin"
},
"packageManager": "pnpm@11.2.1",
"volta": {
"pnpm": "11.2.1",
"node": "22.13.0"
},
"engines": {
"node": ">=22.13.0"
}
}