distopia 0.0.0

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,3 @@
1
+ # Distopia
2
+
3
+ Library for [Distopia](https://distopia.top).
package/dist/index.cjs ADDED
@@ -0,0 +1,6 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#endregion
3
+ //#region src/index.ts
4
+ const DISTOPIA_VERSION = "0.0.0";
5
+ //#endregion
6
+ exports.DISTOPIA_VERSION = DISTOPIA_VERSION;
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare const DISTOPIA_VERSION: string;
3
+ //#endregion
4
+ export { DISTOPIA_VERSION };
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare const DISTOPIA_VERSION: string;
3
+ //#endregion
4
+ export { DISTOPIA_VERSION };
package/dist/index.mjs ADDED
@@ -0,0 +1,5 @@
1
+ //#endregion
2
+ //#region src/index.ts
3
+ const DISTOPIA_VERSION = "0.0.0";
4
+ //#endregion
5
+ export { DISTOPIA_VERSION };
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "distopia",
3
+ "version": "0.0.0",
4
+ "description": "Library for Distopia.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/thunlights/distopia.git",
9
+ "directory": "lib/distopia"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "type": "module",
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.mts",
18
+ "import": "./dist/index.mjs",
19
+ "require": "./dist/index.cjs"
20
+ }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org/"
25
+ },
26
+ "scripts": {
27
+ "build": "tsdown",
28
+ "lint": "oxfmt --check && oxlint",
29
+ "lint:fix": "oxlint --fix",
30
+ "format": "oxfmt",
31
+ "typecheck": "tsc --noEmit",
32
+ "prepublishOnly": "bun run build"
33
+ },
34
+ "dependencies": {
35
+ "oxfmt": "0.45.0",
36
+ "oxlint": "1.60.0",
37
+ "tsdown": "0.22.2"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "24",
41
+ "bun": "1.3.13"
42
+ },
43
+ "peerDependencies": {
44
+ "typescript": "6.0.2"
45
+ }
46
+ }