-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
{
"name": "clean-node-package-typescript",
"private": false,
"version": "1.0.0",
"description": "A simple template for creating a Node.js package with TypeScript, Vite, Vitest and ESLint",
"homepage": "https://github.com/Xkonti/clean-node-package-typescript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Xkonti/clean-node-package-typescript.git"
},
"keywords": [
"typescript",
"vite",
"vitest",
"eslint",
"template"
],
"author": "Beniamin (Xkonti) Dudek <[email protected]>",
"bugs": {
"url": "https://github.com/Xkonti/clean-node-package-typescript/issues"
},
"type": "module",
"main": "./dist/clean-node-package-typescript.umd.cjs",
"module": "./dist/clean-node-package-typescript.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/clean-node-package-typescript.js",
"require": "./dist/clean-node-package-typescript.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vite-plugin-dts": "^3.4.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.33.0"
}
}