-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.38 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
59
60
{
"name": "fibonacci-sample",
"version": "0.1.0",
"description": "Sample library and CLI for generating Fibonacci sequences",
"keywords": [
"fibonacci",
"math"
],
"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>",
"exports": {
".": {
"types": "dist/index.d.ts",
"import": "dist/index.js"
}
},
"type": "module",
"bin": "dist/cli/index.js",
"files": [
"dist"
],
"scripts": {
"prepack": "tsc -p tsconfig.build.json"
},
"dependencies": {
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^25.9.2",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.4.1",
"jiti": "^2.7.0",
"prettier": "^3.8.4",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=24"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.16.0",
"onFail": "download"
}
},
"packageManager": "pnpm@11.7.0"
}