-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.41 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
{
"name": "type-flag",
"version": "0.0.0-semantic-release",
"description": "Typed command-line arguments parser",
"keywords": [
"cli",
"command-line",
"flag",
"argv",
"arguments",
"parser",
"typed",
"typescript"
],
"license": "MIT",
"repository": "privatenumber/type-flag",
"funding": "https://github.com/privatenumber/type-flag?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist",
"skills"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"imports": {
"#type-flag": {
"types": "./src/index.ts",
"development": "./src/index.ts",
"default": "./dist/index.mjs"
}
},
"packageManager": "pnpm@10.13.1",
"scripts": {
"build": "pkgroll --minify --clean-dist",
"lint": "lintroll --cache",
"test": "node --conditions=development tests/index.ts",
"type-check": "tsc",
"dev": "node --watch --conditions=development tests/index.ts",
"prepare": "skills-npm",
"prepack": "pnpm build && clean-pkg-json"
},
"devDependencies": {
"@types/node": "^24.10.15",
"clean-pkg-json": "^1.4.2",
"expect-type": "^1.3.0",
"lintroll": "^1.30.2",
"manten": "^2.0.0",
"pkgroll": "^2.27.0",
"skills-npm": "^1.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}