-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 910 Bytes
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
{
"name": "launchdarkly-typegen",
"version": "1.0.0",
"description": "Simple command line tool to generate TypeScript types from a LaunchDarkly project.",
"bin": {
"launchdarkly-typegen": "./dist/cmd.js"
},
"scripts": {
"test": "vitest",
"dev": "tsup --watch",
"build": "tsup",
"release": "pnpm semantic-release"
},
"release": {
"branches": [
"main"
]
},
"keywords": [],
"author": "Jon Lambert <hello@jonlambert.co.uk>",
"license": "GPL-3.0-only",
"dependencies": {
"axios": "^1.6.1",
"cac": "^6.7.14",
"dotenv": "^16.3.1",
"tiny-invariant": "^1.3.1",
"ts-morph": "^23.0.0",
"valibot": "^0.20.1"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.9.0",
"semantic-release": "^25.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vitest": "^0.34.6"
}
}