-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.43 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.43 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"author": "Florian Imdahl <git@ffflorian.de>",
"dependencies": {
"@nestjs/common": "11.1.24",
"@nestjs/core": "11.1.24",
"@nestjs/platform-express": "11.1.24",
"@nestjs/swagger": "11.4.4",
"date-fns": "4.4.0",
"helmet": "8.2.0",
"http-status-codes": "2.3.0",
"logdown": "3.3.1",
"package-json": "10.0.1",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"validate-npm-package-name": "8.0.0"
},
"description": "Find the source of an npm package in an instant.",
"devDependencies": {
"@eslint/js": "10.0.1",
"@ffflorian/eslint-config": "0.14.2",
"@ffflorian/prettier-config": "0.8.2",
"@types/express": "5.0.6",
"@types/node": "~25",
"@types/validate-npm-package-name": "4.0.2",
"@vitest/coverage-v8": "4.1.8",
"eslint": "10.4.1",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-oxlint": "1.68.0",
"eslint-plugin-perfectionist": "5.9.0",
"globals": "17.6.0",
"jiti": "2.7.0",
"lefthook": "2.1.9",
"oxlint": "1.68.0",
"prettier": "3.8.3",
"tsx": "4.22.4",
"type-fest": "5.7.0",
"typescript": "6.0.3",
"typescript-eslint": "8.60.1",
"vitest": "4.1.8"
},
"engines": {
"node": ">= 20"
},
"files": [
"dist"
],
"homepage": "https://pkgsource.ffflorian.dev",
"keywords": [
"nestjs",
"npm",
"typescript"
],
"license": "GPL-3.0",
"main": "dist/index.js",
"name": "pkgsource",
"packageManager": "yarn@4.16.0",
"prettier": "@ffflorian/prettier-config",
"repository": "https://github.com/ffflorian/pkgsource.git",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"dev": "yarn start:dev",
"dist": "yarn clean && yarn build",
"fix": "yarn fix:ts && yarn fix:other",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts:oxlint --fix && yarn lint:ts:eslint --fix",
"lint": "yarn lint:other && yarn lint:ts",
"lint:other": "yarn prettier --list-different",
"lint:ts": "yarn lint:ts:oxlint && yarn lint:ts:eslint",
"lint:ts:eslint": "eslint .",
"lint:ts:oxlint": "oxlint --ignore-path .gitignore .",
"prettier": "prettier \"*.{json,md,yml}\"",
"start:prod": "node dist/index.js",
"start": "tsx src/index.ts",
"start:dev": "NODE_DEBUG=\"pkgsource/*\" tsx src/index.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"type": "module",
"version": "1.13.2"
}