-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "ts-pedantic",
"description": "Rust like error handling for Typescript.",
"private": false,
"version": "0.2.1",
"keywords": [],
"author": "Rendani Gangazhe",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"packageManager": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Renni771/ts-pedantic"
},
"scripts": {
"build": "tsup src --format cjs,esm --dts --minify",
"clean": "rm -rf {dist,node_modules}",
"dev": "vitest --reporter verbose",
"format": "prettier --write .",
"lint": "tsc",
"release": "pnpm build && changeset publish",
"test": "vitest run --reporter verbose"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"prettier": "2.8.4",
"tsup": "6.6.3",
"typescript": "4.9.5",
"vitest": "0.29.2"
}
}