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 +15 -0
- package/package.json +34 -25
- package/dist/cjs/index.js +0 -16
- package/dist/cjs/index.js.map +0 -7
- package/dist/esm/index.js +0 -2
- package/dist/esm/index.js.map +0 -1
- package/dist/types/index.d.ts +0 -1
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
package/dist/cjs/index.js.map
DELETED
package/dist/esm/index.js
DELETED
package/dist/esm/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,GAAG,GAAG,EAAE,CAAA"}
|
package/dist/types/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const cli: {};
|