onelyid 0.1.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 @@
1
+ # onelyid
@@ -0,0 +1,3 @@
1
+ declare const hello: () => void;
2
+
3
+ export { hello };
package/dist/index.js ADDED
@@ -0,0 +1,30 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/index.ts
20
+ var index_exports = {};
21
+ __export(index_exports, {
22
+ hello: () => hello
23
+ });
24
+ module.exports = __toCommonJS(index_exports);
25
+ var hello = () => console.log("Hello");
26
+ // Annotate the CommonJS export names for ESM import in node:
27
+ 0 && (module.exports = {
28
+ hello
29
+ });
30
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export const hello = () => console.log('Hello');\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAO,IAAM,QAAQ,MAAM,QAAQ,IAAI,OAAO;","names":[]}
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "onelyid",
3
+ "version": "0.1.0",
4
+ "description": "Add ATProto login to your App in minutes",
5
+ "author": "abraj",
6
+ "license": "MIT",
7
+ "main": "dist/index.js",
8
+ "scripts": {
9
+ "build": "tsup --dts",
10
+ "publish": "npm publish"
11
+ },
12
+ "type": "commonjs",
13
+ "files": ["dist"],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/baadal/onelyid.git"
17
+ },
18
+ "keywords": [
19
+ "atproto",
20
+ "auth",
21
+ "authentication",
22
+ "bluesky",
23
+ "oauth",
24
+ "oauth2",
25
+ "server",
26
+ "node",
27
+ "backend"
28
+ ],
29
+ "devDependencies": {
30
+ "tsup": "^8.5.1",
31
+ "typescript": "^5.9.3"
32
+ },
33
+ "tsup": {
34
+ "entry": [
35
+ "src/index.ts"
36
+ ],
37
+ "splitting": false,
38
+ "sourcemap": true,
39
+ "clean": true
40
+ }
41
+ }