@paypol-protocol/aps-1 1.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/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@paypol-protocol/aps-1",
3
+ "version": "1.0.0",
4
+ "description": "Agent Payment Standard v1 - The open protocol for AI agent payments on PayPol",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": ["dist"],
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "default": "./dist/index.js"
12
+ }
13
+ },
14
+ "scripts": {
15
+ "build": "tsc",
16
+ "dev": "tsc --watch"
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "license": "MIT",
22
+ "keywords": ["ai-agent", "payment", "protocol", "escrow", "web3", "tempo"],
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/PayPol-Foundation/paypol-protocol"
26
+ },
27
+ "homepage": "https://paypol.xyz",
28
+ "bugs": {
29
+ "url": "https://github.com/PayPol-Foundation/paypol-protocol/issues"
30
+ },
31
+ "dependencies": {
32
+ "express": "^4.21.0",
33
+ "zod": "^3.22.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/express": "^5.0.0",
37
+ "@types/node": "^20.0.0",
38
+ "typescript": "^5.0.0"
39
+ }
40
+ }