agent-remnote 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,3 @@
1
+ # agent-remnote
2
+
3
+ 一个最小可发布占位包,用于后续扩展与 RemNote 的 Agent 集成能力。
@@ -0,0 +1,2 @@
1
+ export declare const agentRemnoteHello: () => string;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB,cAAmC,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // src/index.ts
2
+ var agentRemnoteHello = () => "hello from agent-remnote";
3
+ export {
4
+ agentRemnoteHello
5
+ };
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "agent-remnote",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "files": [
6
+ "dist"
7
+ ],
8
+ "main": "dist/index.js",
9
+ "types": "dist/index.d.ts",
10
+ "scripts": {
11
+ "build": "bun build ./src/index.ts --packages external --outdir dist && tsc -p tsconfig.json --emitDeclarationOnly",
12
+ "prepublishOnly": "npm run build"
13
+ },
14
+ "devDependencies": {
15
+ "@types/node": "^20.11.30",
16
+ "typescript": "^5.4.0"
17
+ }
18
+ }