-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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": "node-library-template",
"version": "0.0.0",
"description": "Template repository for library project.",
"keywords": [
"node",
"library",
"template"
],
"repository": "https://github.com/ony3000/node-library-template",
"license": "MIT",
"author": "Hyeonjong <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./dist/demo-lib.js",
"require": "./dist/demo-lib.umd.cjs"
}
},
"main": "./dist/demo-lib.umd.cjs",
"module": "./dist/demo-lib.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch --minify=false",
"lint": "biome lint",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest watch --passWithNoTests"
},
"devDependencies": {
"@biomejs/biome": "1.8.0",
"@trivago/prettier-plugin-sort-imports": "4.2.1",
"prettier": "2.8.4",
"typescript": "4.9.5",
"vite": "5.0.11",
"vite-plugin-dts": "3.7.0",
"vitest": "1.1.3"
},
"packageManager": "[email protected]"
}