-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 KB
/
package.json
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
{
"name": "flg",
"version": "3.0.0",
"description": "Flag library for node.js",
"type": "module",
"main": "dist/flags.js",
"types": "dist/flags.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup",
"test": "node --import tsx --test tests/**/*_test.ts",
"lint": "eslint .",
"prepare": "pnpm run build"
},
"keywords": [
"flag",
"args",
"command line"
],
"repository": {
"type": "git",
"url": "http://github.com/dpup/node-flags.git"
},
"homepage": "https://github.com/dpup/node-flags",
"author": {
"name": "Daniel Pupius",
"email": "dan@pupi.us",
"url": "http://pupius.co.uk"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/eslint": "^8.56.10",
"@types/node": "^22.10.10",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^9.2.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.19.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}