Skip to content

Commit c415fc9

Browse files
committed
feat: version 0.0.1
1 parent 34238d5 commit c415fc9

File tree

18 files changed

+1034
-548
lines changed

18 files changed

+1034
-548
lines changed

.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"typescript.suggest.paths": true,
1010
"typescript.suggest.autoImports": true,
1111
"editor.renderWhitespace": "all",
12-
"editor.rulers": [120, 160],
1312
"editor.codeActionsOnSave": {
1413
"source.fixAll": "always",
1514
"source.organizeImports": "never",

biome.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@
2525
"recommended": true,
2626
"suspicious": {
2727
"recommended": true,
28-
"noConsole": "error"
28+
"noConsole": "error",
29+
"noExplicitAny": "off"
2930
},
3031
"style": {
3132
"recommended": true
3233
},
3334
"complexity": {
34-
"recommended": true
35+
"recommended": true,
36+
"noBannedTypes": "off"
3537
},
3638
"security": {
3739
"recommended": true

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "open-source-stack",
2+
"name": "@flixy-dev/redis-fluent-keys-monorepo",
33
"version": "1.0.0",
4-
"description": "Minimal open-source stack to help you ship an open-source package in TS",
4+
"description": "",
55
"scripts": {
66
"build": "pnpm run --filter=\"./packages/**/*\" build",
77
"build:watch": "pnpm build && pnpm run --filter=\"./packages/**/*\" --parallel build --watch",
@@ -18,25 +18,25 @@
1818
"local-release": "changeset version && changeset publish",
1919
"version": "changeset version"
2020
},
21-
"author": "forge-42",
21+
"author": "Flixy.cz",
2222
"license": "MIT",
2323
"repository": {
2424
"type": "git",
25-
"url": "https://github.com/forge-42/open-source-stack.git"
25+
"url": "https://github.com/flixy-dev/redis-fluent-keys.git"
2626
},
2727
"bugs": {
28-
"url": "https://github.com/forge-42/open-source-stack/issues"
28+
"url": "https://github.com/flixy-dev/redis-fluent-keys/issues"
2929
},
30-
"homepage": "https://github.com/forge-42/open-source-stack#readme",
30+
"homepage": "https://github.com/flixy-dev/redis-fluent-keys#readme",
3131
"devDependencies": {
3232
"@biomejs/biome": "^1.9.4",
33-
"@changesets/cli": "^2.27.7",
34-
"@types/node": "^20.12.7",
35-
"lefthook": "^1.7.2"
33+
"@changesets/cli": "^2.29.0",
34+
"@types/node": "^22.14.1",
35+
"lefthook": "^1.11.10"
3636
},
3737
"packageManager": "[email protected]",
3838
"engines": {
3939
"pnpm": ">=10.6.5",
40-
"node": ">=20.0.0"
40+
"node": ">=22.0.0"
4141
}
4242
}

packages/open-source-stack/src/index.test.ts

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/open-source-stack/src/index.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

packages/open-source-stack/package.json renamed to packages/redis-fluent-keys/package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
{
2-
"name": "open-source-stack",
3-
"version": "1.1.1",
2+
"name": "@flixy-dev/redis-fluent-keys",
3+
"version": "0.0.1",
44
"description": "Minimal open-source stack to help you ship an open-source package in TS",
5-
"main": "./dist/index.js",
6-
"module": "./dist/index.mjs",
7-
"types": "./dist/index.d.mts",
5+
"type": "module",
6+
"main": "./dist/index.cjs",
7+
"module": "./dist/index.js",
8+
"types": "./dist/index.d.ts",
89
"exports": {
910
"./package.json": "./package.json",
1011
".": {
1112
"import": {
12-
"types": "./dist/index.d.mts",
13-
"import": "./dist/index.mjs",
14-
"default": "./dist/index.mjs"
15-
},
16-
"require": {
1713
"types": "./dist/index.d.ts",
1814
"import": "./dist/index.js",
19-
"require": "./dist/index.js"
15+
"default": "./dist/index.js"
16+
},
17+
"require": {
18+
"types": "./dist/index.d.cts",
19+
"import": "./dist/index.cjs",
20+
"require": "./dist/index.cjs"
2021
}
2122
}
2223
},
@@ -46,13 +47,12 @@
4647
"provenance": true
4748
},
4849
"devDependencies": {
49-
"@arethetypeswrong/cli": "^0.15.4",
50-
"@changesets/cli": "^2.27.7",
51-
"@types/node": "^20.12.7",
52-
"@vitest/coverage-v8": "^1.5.2",
53-
"happy-dom": "^14.7.1",
54-
"tsup": "^8.0.2",
55-
"typescript": "^5.4.5",
56-
"vitest": "^1.5.2"
50+
"@arethetypeswrong/cli": "^0.17.4",
51+
"@changesets/cli": "^2.29.0",
52+
"@types/node": "^22.14.1",
53+
"@vitest/coverage-v8": "^3.1.1",
54+
"tsup": "^8.4.0",
55+
"typescript": "^5.8.3",
56+
"vitest": "^3.1.1"
5757
}
5858
}

0 commit comments

Comments
 (0)