-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
46
47
48
49
50
51
52
{
"name": "@ngrok/gen-x",
"version": "0.1.2",
"description": "Generate package.json#exports from src",
"author": "ngrok",
"repository": {
"type": "git",
"url": "https://github.com/ngrok-oss/gen-x"
},
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": "^20.0.0"
},
"keywords": [],
"scripts": {
"bootstrap": "tsx ./scripts/code-gen-meta.ts",
"compile": "tsc --project tsconfig.compile.json",
"fmt:check": "prettier --check .",
"fmt": "prettier --write .",
"precompile": "rm -rf dist && pnpm run bootstrap",
"prepublishOnly": "pnpm run compile",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"bin": "./dist/cli.js",
"files": [
"dist",
"package.json"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"@commander-js/extra-typings": "13.1.0",
"commander": "13.1.0",
"tinyglobby": "0.2.10"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@types/node": "22.12.0",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.7.3",
"vitest": "3.0.4"
}
}