-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "my_fibonacci",
"version": "0.0.0",
"description": "A sample Node.js project",
"keywords": [
"sample",
"fibonacci"
],
"homepage": "https://github.com/threeal/nodejs-starter#readme",
"bugs": {
"url": "https://github.com/threeal/nodejs-starter/issues",
"email": "alfi.maulana.f@gmail.com"
},
"repository": "github:threeal/nodejs-starter",
"license": "Unlicense",
"author": "Alfi Maulana <alfi.maulana.f@gmail.com>",
"type": "module",
"main": "dist/lib.js",
"types": "dist/lib.d.ts",
"bin": "dist/bin.js",
"files": [
"dist"
],
"scripts": {
"prepack": "tsc -p tsconfig.build.json",
"start": "jiti src/bin.ts",
"test": "vitest run"
},
"dependencies": {
"commander": "^14.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^10.2.1",
"jiti": "^2.6.1",
"lefthook": "^2.1.6",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.0.15"
}
}