-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@stacksjs/tlsx",
"type": "module",
"version": "0.5.6",
"description": "A TLS/HTTPS library with automation.",
"author": "Chris Breuer <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/tlsx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/tlsx.git"
},
"bugs": {
"url": "https://github.com/stacksjs/tlsx/issues"
},
"keywords": [
"tls",
"https",
"ssl",
"security",
"https",
"cryptography",
"x509",
"keys",
"certificates",
"rootca",
"ca-bundle",
"development",
"environment",
"bun",
"stacks",
"node-forge",
"typescript",
"javascript"
],
"exports": {
".": {
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tlsx": "./dist/bin/cli.js"
},
"files": ["README.md", "dist"],
"scripts": {
"build": "bun build.ts && bun run compile",
"compile": "bun build ./bin/cli.ts --compile --minify --outfile bin/tlsx",
"compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64",
"compile:linux-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile bin/tlsx-linux-x64",
"compile:linux-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile bin/tlsx-linux-arm64",
"compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile bin/tlsx-windows-x64.exe",
"compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile bin/tlsx-darwin-x64",
"compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/tlsx-darwin-arm64",
"lint": "bunx --bun eslint .",
"lint:fix": "bunx --bun eslint . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build && bun run compile:all",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit",
"dev:docs": "bunx --bun vitepress dev docs",
"build:docs": "bunx --bun vitepress build docs",
"preview:docs": "bunx --bun vitepress preview docs"
},
"devDependencies": {
"@stacksjs/cli": "^0.68.2",
"@stacksjs/eslint-config": "^3.8.1-beta.2",
"@stacksjs/storage": "^0.68.2",
"@types/bun": "^1.1.13",
"@types/node-forge": "^1.3.11",
"bun-config": "^0.2.0",
"bun-plugin-dtsx": "^0.21.8",
"node-forge": "^1.3.1",
"typescript": "^5.6.3",
"vitepress": "^1.5.0"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*.{js,ts}": "bunx --bun eslint . --fix"
}
}