-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"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 <nianelo4@gmail.com>",
"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": "2.0.0",
"@trivago/prettier-plugin-sort-imports": "4.2.1",
"prettier": "3.6.2",
"typescript": "5.8.3",
"vite": "6.3.5",
"vite-plugin-dts": "4.5.4",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"packageManager": "pnpm@9.15.5"
}