generated from iipanda/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 811 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
{
"name": "node-paynow",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"engines": {
"node": "^20.9.0",
"pnpm": "^9.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsup src/index.ts --dts --clean --minify --format cjs,esm",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/node": "^20.12.7",
"eslint": "^9.1.1",
"prettier": "3.3.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "8.0.0-alpha.29",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"dependencies": {
"ky": "^1.2.4",
"zod": "^3.23.8"
}
}