-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.03 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
38
39
40
41
42
43
{
"name": "@evyweb/node-script-template",
"version": "1.0.0",
"description": "A simple Typescript template with tsup, vitest and changesets",
"main": "dist/app.js",
"module": "dist/app.mjs",
"types": "dist/app.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsup src/app.ts --format cjs,esm --dts",
"lint": "tsc --noEmit",
"start": "npm run build && node dist/app.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"typescript",
"tsup",
"vitest",
"changesets"
],
"author": "Evyweb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Evyweb/node-script-template.git"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "^2.1.3",
"jest-extended": "^4.0.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.24.0"
}
}