-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.24 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "project-name-here",
"version": "0.0.1",
"description": "project description here",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"type": "module",
"scripts": {
"prepare": "node preinstall.js",
"dev": "tsup --watch",
"build": "tsup",
"build:lib": "BUILD_MODE=lib tsup",
"build:app": "BUILD_MODE=app tsup",
"start": "node dist/main.js",
"typecheck": "tsc --noEmit",
"lint": "biome lint --write ./src",
"format": "biome format --write ./src",
"check": "biome check --write ./src",
"test": "vitest run",
"test:watch": "vitest",
"hook": "node hook.js"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@10.27.0",
"keywords": [
"project keywords"
],
"author": {
"name": "Hanif Dwy Putra S",
"email": "hanifdwyputrasembiring@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@swc/core": "^1.15.46",
"@types/node": "^26.1.1",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vitest": "^4.1.10"
}
}