generated from egoist/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 850 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
42
{
"name": "tryresult",
"description": "A typescript library to get rid of try catches.",
"keywords": [
"typescript",
"error-handling",
"try-catch",
"erros"
],
"repository": {
"type": "git",
"url": "https://github.com/ahmeddots/tryresult.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src --format cjs,esm",
"build": "pnpm run build-fast --dts",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.2.1",
"prettier": "2.8.4",
"tsup": "6.6.3",
"typescript": "4.9.5",
"vite": "^4.3.8",
"vitest": "0.28.5"
}
}