kunk 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # bun-back
2
+
3
+ To install dependencies:
4
+
5
+ ```bash
6
+ bun install
7
+ ```
8
+
9
+ To run:
10
+
11
+ ```bash
12
+ bun run index.ts
13
+ ```
14
+
15
+ This project was created using `bun init` in bun v1.2.23. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
package/package.json CHANGED
@@ -1,26 +1,35 @@
1
1
  {
2
- "name": "kunk",
3
- "version": "2.0.0",
4
- "source": "src/index.ts",
5
- "main": "dist/cjs/index.js",
6
- "module": "dist/esm/index.js",
7
- "repository": "github:auxo-core/kunk",
8
- "files": [
9
- "dist"
10
- ],
11
- "publishConfig": {
12
- "access": "public",
13
- "tag": "dev",
14
- "main": "dist/cjs/index.js",
15
- "typings": "dist/types/index.d.ts"
16
- },
17
- "private": false,
18
- "scripts": {
19
- "build:esm": "tsc --sourcemap --outdir dist/esm -m es2020",
20
- "build:cjs": "esbuild src/*.ts --target=es2017 --sourcemap --platform=node --outdir=dist/cjs --format=cjs",
21
- "build:types": "tsc --declaration --emitDeclarationOnly --outDir dist/types",
22
- "build": "rm -rf dist | run-p build:esm build:cjs build:types",
23
- "clean": "rm -rf dist | rm -rf node_modules"
24
- },
25
- "typings": "dist/types/index.d.ts"
26
- }
2
+ "name": "kunk",
3
+ "version": "2.0.1",
4
+ "module": "./src/index.ts",
5
+ "type": "module",
6
+ "files": [
7
+ "./dist"
8
+ ],
9
+ "workspaces": [
10
+ "packages/*",
11
+ "tools/*",
12
+ "sample"
13
+ ],
14
+ "devDependencies": {
15
+ "@types/bun": "^1.3.9",
16
+ "@types/lodash": "^4.17.23",
17
+ "tsdown": "^0.20.3",
18
+ "turbo": "^2.8.10",
19
+ "typescript": "^5.9.3",
20
+ "pnpm": "^10.30.1"
21
+ },
22
+ "peerDependencies": {
23
+ "typescript": "^5"
24
+ },
25
+ "scripts": {
26
+ "clean": "turbo run clean",
27
+ "version:patch": "turbo run version:patch",
28
+ "deploy": "bun run build && turbo run deploy && bun run version:patch",
29
+ "test": "turbo run test",
30
+ "build": "turbo run build",
31
+ "cli": "bun run ./src/cli.ts",
32
+ "db:gen": "turbo run db:gen",
33
+ "db:migrate": "turbo run db:migrate"
34
+ }
35
+ }
package/dist/cjs/index.js DELETED
@@ -1,16 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __markAsModule = (target) => __defProp(target, "__esModule", {value: true});
3
- var __export = (target, all) => {
4
- for (var name in all)
5
- __defProp(target, name, {get: all[name], enumerable: true});
6
- };
7
- __markAsModule(exports);
8
- __export(exports, {
9
- cli: () => cli
10
- });
11
- const cli = {};
12
- // Annotate the CommonJS export names for ESM import in node:
13
- 0 && (module.exports = {
14
- cli
15
- });
16
- //# sourceMappingURL=index.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/index.ts"],
4
- "sourcesContent": ["export const cli = {}"],
5
- "mappings": ";;;;;;AAAA;AAAA;AAAA;AAAA;AAAO,MAAM,MAAM;",
6
- "names": []
7
- }
package/dist/esm/index.js DELETED
@@ -1,2 +0,0 @@
1
- export const cli = {};
2
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,GAAG,GAAG,EAAE,CAAA"}
@@ -1 +0,0 @@
1
- export declare const cli: {};