@sillyfrogster/eunia 0.1.0-alpha.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.
@@ -0,0 +1,13 @@
1
+ //#region \0rolldown/runtime.js
2
+ var __defProp = Object.defineProperty;
3
+ var __exportAll = (all, no_symbols) => {
4
+ let target = {};
5
+ for (var name in all) __defProp(target, name, {
6
+ get: all[name],
7
+ enumerable: true
8
+ });
9
+ if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
10
+ return target;
11
+ };
12
+ //#endregion
13
+ export { __exportAll as t };
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@sillyfrogster/eunia",
3
+ "version": "0.1.0-alpha.1",
4
+ "description": "A modular TypeScript Discord library built for Bun",
5
+ "keywords": ["discord", "discord-api", "bot", "bun", "typescript"],
6
+ "type": "module",
7
+ "main": "./dist/index.mjs",
8
+ "types": "./dist/index.d.mts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.mts",
12
+ "default": "./dist/index.mjs"
13
+ }
14
+ },
15
+ "files": ["dist", "README.md", "LICENSE"],
16
+ "sideEffects": false,
17
+ "author": "Sillyfrogster",
18
+ "license": "MIT",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/Sillyfrogster/Eunia.git"
22
+ },
23
+ "homepage": "https://github.com/Sillyfrogster/Eunia#readme",
24
+ "bugs": {
25
+ "url": "https://github.com/Sillyfrogster/Eunia/issues"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public",
29
+ "tag": "alpha"
30
+ },
31
+ "packageManager": "bun@1.3.14",
32
+ "engines": {
33
+ "bun": ">=1.3.14"
34
+ },
35
+ "workspaces": [
36
+ "packages/*"
37
+ ],
38
+ "scripts": {
39
+ "build": "tsdown src/index.ts --dts --platform node --target esnext",
40
+ "check": "bun run typecheck && bun test --parallel=1",
41
+ "coverage": "bun run scripts/coverage.ts",
42
+ "prepack": "bun run build",
43
+ "test": "bun test --parallel=1",
44
+ "typecheck": "tsc --noEmit"
45
+ },
46
+ "devDependencies": {
47
+ "@types/bun": "^1.3.14",
48
+ "tsdown": "^0.22.12",
49
+ "typescript": "^5.5.0"
50
+ }
51
+ }