Skip to content

Commit 3d42fd1

Browse files
committed
chore: wip
1 parent 0afda05 commit 3d42fd1

41 files changed

Lines changed: 254 additions & 102 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/base-x/package.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"name": "ts-base-x",
3+
"type": "module",
4+
"version": "0.0.0",
5+
"description": "A base-x encoding and decoding library.",
6+
"author": "Chris Breuer <chris@stacksjs.org> (https://github.com/chrisbbreuer)",
7+
"license": "MIT",
8+
"homepage": "https://github.com/stacksjs/ts-security#readme",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/stacksjs/ts-security.git"
12+
},
13+
"bugs": {
14+
"url": "https://github.com/stacksjs/ts-security/issues"
15+
},
16+
"keywords": [
17+
"base-x",
18+
"base",
19+
"x",
20+
"encoding",
21+
"decoding",
22+
"crypto",
23+
"cryptography",
24+
"base64",
25+
"base58",
26+
"base32",
27+
"base16",
28+
"base10",
29+
"base8",
30+
"bun",
31+
"stacks",
32+
"node-forge",
33+
"typescript",
34+
"javascript"
35+
],
36+
"exports": {
37+
".": {
38+
"import": "./dist/index.js",
39+
"types": "./dist/index.d.ts"
40+
}
41+
},
42+
"module": "./dist/index.js",
43+
"types": "./dist/index.d.ts",
44+
"files": ["README.md", "dist"],
45+
"scripts": {
46+
"build": "bun build.ts",
47+
"lint": "bunx --bun eslint .",
48+
"lint:fix": "bunx --bun eslint . --fix",
49+
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
50+
"changelog": "bunx changelogen --output CHANGELOG.md",
51+
"prepublishOnly": "bun --bun run build",
52+
"release": "bun run changelog && bunx bumpp package.json --all",
53+
"test": "bun test",
54+
"typecheck": "bun --bun tsc --noEmit"
55+
},
56+
"devDependencies": {
57+
"@stacksjs/docs": "^0.69.3",
58+
"@stacksjs/eslint-config": "^4.2.1-beta.1",
59+
"@types/bun": "^1.2.3",
60+
"bun-plugin-dtsx": "^0.21.9",
61+
"typescript": "^5.7.3"
62+
},
63+
"overrides": {
64+
"unconfig": "0.3.10"
65+
},
66+
"simple-git-hooks": {
67+
"pre-commit": "bun lint-staged"
68+
},
69+
"lint-staged": {
70+
"*.{js,ts}": "bunx eslint . --fix"
71+
}
72+
}

packages/ts-security/package.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"name": "ts-security",
3+
"type": "module",
4+
"version": "0.0.0",
5+
"description": "A library of security utilities. Written in TypeScript. Optimized for Node/Bun/Browser environments.",
6+
"author": "Chris Breuer <chris@stacksjs.org> (https://github.com/chrisbbreuer)",
7+
"license": "MIT",
8+
"homepage": "https://github.com/stacksjs/ts-security#readme",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/stacksjs/ts-security.git"
12+
},
13+
"bugs": {
14+
"url": "https://github.com/stacksjs/ts-security/issues"
15+
},
16+
"keywords": [
17+
"tls",
18+
"https",
19+
"ssl",
20+
"security",
21+
"https",
22+
"cryptography",
23+
"x509",
24+
"keys",
25+
"certificates",
26+
"rootca",
27+
"ca-bundle",
28+
"development",
29+
"environment",
30+
"bun",
31+
"stacks",
32+
"node-forge",
33+
"typescript",
34+
"javascript"
35+
],
36+
"exports": {
37+
".": {
38+
"import": "./dist/index.js",
39+
"types": "./dist/index.d.ts"
40+
}
41+
},
42+
"module": "./dist/index.js",
43+
"types": "./dist/index.d.ts",
44+
"files": ["README.md", "dist"],
45+
"scripts": {
46+
"build": "bun build.ts",
47+
"lint": "bunx --bun eslint .",
48+
"lint:fix": "bunx --bun eslint . --fix",
49+
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
50+
"changelog": "bunx changelogen --output CHANGELOG.md",
51+
"prepublishOnly": "bun --bun run build",
52+
"release": "bun run changelog && bunx bumpp package.json --all",
53+
"test": "bun test",
54+
"typecheck": "bun --bun tsc --noEmit",
55+
"dev:docs": "bun --bun vitepress dev docs",
56+
"build:docs": "bun --bun vitepress build docs",
57+
"preview:docs": "bun --bun vitepress preview docs"
58+
},
59+
"devDependencies": {
60+
"@stacksjs/docs": "^0.69.3",
61+
"@stacksjs/eslint-config": "^4.2.1-beta.1",
62+
"@types/bun": "^1.2.3",
63+
"bun-plugin-dtsx": "^0.21.9",
64+
"typescript": "^5.7.3"
65+
},
66+
"overrides": {
67+
"unconfig": "0.3.10"
68+
},
69+
"simple-git-hooks": {
70+
"pre-commit": "bun lint-staged"
71+
},
72+
"lint-staged": {
73+
"*.{js,ts}": "bunx eslint . --fix"
74+
}
75+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)