-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 937 Bytes
/
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
{
"name": "utilstash",
"version": "0.0.2",
"description": "A utility package for various common tasks",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"files": [
"dist"
],
"type": "module",
"keywords": [
"utility",
"tools",
"typescript",
"javascript"
],
"author": "Aditya Rajbhar <codebyaadi@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codebyaadi/utilstash.git"
},
"bugs": {
"url": "https://github.com/codebyaadi/utilstash/issues"
},
"homepage": "https://github.com/codebyaadi/utilstash",
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.3.3",
"tsup": "^8.2.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}