library-skills 0.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 @@
1
+ # Library Agent Skills
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "library-skills",
3
+ "version": "0.0.1",
4
+ "description": "Library Agent Skills",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "import": {
9
+ "types": "./ts/dist/index.d.ts",
10
+ "default": "./ts/dist/index.js"
11
+ },
12
+ "require": {
13
+ "types": "./ts/dist/index.d.cts",
14
+ "default": "./ts/dist/index.cjs"
15
+ }
16
+ }
17
+ },
18
+ "main": "./ts/dist/index.cjs",
19
+ "module": "./ts/dist/index.js",
20
+ "types": "./ts/dist/index.d.ts",
21
+ "bin": {
22
+ "library-skills": "./ts/dist/cli.js"
23
+ },
24
+ "files": [
25
+ "ts/dist"
26
+ ],
27
+ "author": {
28
+ "name": "Sebastián Ramírez",
29
+ "email": "tiangolo@gmail.com"
30
+ },
31
+ "license": "MIT",
32
+ "devDependencies": {
33
+ "tsup": "^8.4.0",
34
+ "typescript": "^5.7.0"
35
+ },
36
+ "scripts": {
37
+ "build": "tsup",
38
+ "dev": "tsup --watch"
39
+ }
40
+ }
@@ -0,0 +1,8 @@
1
+ // ts/src/index.ts
2
+ function main() {
3
+ console.log("library-skills!");
4
+ }
5
+
6
+ export {
7
+ main
8
+ };
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+
4
+ // ts/src/index.ts
5
+ function main() {
6
+ console.log("library-skills!");
7
+ }
8
+
9
+ // ts/src/cli.ts
10
+ main();
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node
package/ts/dist/cli.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ main
4
+ } from "./chunk-L5NY3HR3.js";
5
+
6
+ // ts/src/cli.ts
7
+ main();
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // ts/src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ main: () => main
24
+ });
25
+ module.exports = __toCommonJS(index_exports);
26
+ function main() {
27
+ console.log("library-skills!");
28
+ }
29
+ // Annotate the CommonJS export names for ESM import in node:
30
+ 0 && (module.exports = {
31
+ main
32
+ });
@@ -0,0 +1,3 @@
1
+ declare function main(): void;
2
+
3
+ export { main };
@@ -0,0 +1,3 @@
1
+ declare function main(): void;
2
+
3
+ export { main };
@@ -0,0 +1,6 @@
1
+ import {
2
+ main
3
+ } from "./chunk-L5NY3HR3.js";
4
+ export {
5
+ main
6
+ };