-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 942 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
{
"name": "cope",
"version": "1.0.9",
"description": "Simple error handling util, inspired by Golang solution",
"module": "index.js",
"type": "module",
"files": [
"index.d.ts",
"index.js"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./index.js"
}
},
"author": "Lucifurry",
"license": "ISC",
"repository": "https://github.com/TheLucifurry/cope",
"homepage": "https://github.com/TheLucifurry/cope#readme",
"scripts": {
"dev": "bun test --watch",
"build": "tsc index.ts --noCheck && bun build ./index.ts --outdir .",
"package:new-patch": "npm version patch",
"package:new-minor": "npm version minor",
"package:publish": "git push && npm publish"
},
"keywords": [
"error",
"handling",
"cope"
],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}