forked from przeprogramowani/10x-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.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
{
"name": "@przeprogramowani/10x-cli",
"version": "1.6.0",
"description": "Open-source CLI for 10xDevs course content",
"repository": {
"type": "git",
"url": "https://github.com/przeprogramowani/10x-cli.git"
},
"homepage": "https://github.com/przeprogramowani/10x-cli",
"bugs": {
"url": "https://github.com/przeprogramowani/10x-cli/issues"
},
"type": "module",
"bin": {
"10x": "./dist/index.mjs"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outfile dist/index.mjs --target node",
"build:binary": "bun build --compile --minify src/index.ts --outfile dist/10x",
"generate-types": "bun run scripts/generate-types.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "bun run --bun node_modules/oxlint/bin/oxlint ."
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"cac": "^7.0.0",
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"@types/bun": "^1.3.12",
"@types/node": "^22.0.0",
"@types/proper-lockfile": "^4.1.4",
"conventional-changelog-angular": "^8.3.1",
"conventional-commits-parser": "^6.4.0",
"conventional-recommended-bump": "^11.2.0",
"openapi-typescript": "^7.4.0",
"oxlint": "^0.16.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}