-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.08 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@atxp/atxp-monorepo",
"version": "0.10.7",
"description": "ATXP SDK Monorepo - Authorization Token Exchange Protocol packages",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/atxp-common",
"packages/atxp-sqlite",
"packages/atxp-redis",
"packages/atxp-server",
"packages/atxp-client",
"packages/atxp-base",
"packages/atxp-solana",
"packages/atxp-worldchain",
"packages/atxp-polygon",
"packages/atxp-express",
"packages/atxp-cloudflare",
"packages/atxp-x402"
],
"repository": {
"type": "git",
"url": "git+https://github.com/atxp-dev/sdk.git"
},
"keywords": [
"atxp",
"oauth",
"payment",
"solana",
"authentication",
"authorization"
],
"scripts": {
"clean": "rm -rf packages/*/dist packages/*/tsconfig.tsbuildinfo packages/*/node_modules",
"build": "npm run build --workspaces --if-present",
"build:dev": "tsc",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:integration": "npm run test:integration --workspaces --if-present",
"test:package-managers": "npm run test:package-managers -w packages/atxp-common",
"dev:resource": "npm run build:dev && node dist/resource.js",
"dev:cli": "npm run build:dev && node dist/cli.js",
"size:report": "node scripts/bundle-size-ci.js --stdout",
"size:ci": "node scripts/bundle-size-ci.js",
"validate:packages": "node scripts/validate-packages.js",
"test:package-install": "node scripts/test-package-installation.js",
"pack:all": "npm run pack:dry --workspaces --if-present",
"prepack:all": "npm run prepack --workspaces --if-present"
},
"dependencies": {
"dotenv": "^17.2.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/better-sqlite3": "^7.6.13",
"@types/content-type": "^1.1.9",
"@types/node": "^25.0.3",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-plugin-import": "^2.32.0",
"fetch-mock": "^12.5.2",
"node-mocks-http": "^1.17.2",
"rollup": "^4.50.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-dts": "^6.2.3",
"supertest": "^7.1.4",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.16"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "4.54.0",
"@rollup/rollup-darwin-x64": "4.54.0",
"@rollup/rollup-linux-arm64-gnu": "4.54.0",
"@rollup/rollup-linux-arm64-musl": "4.54.0",
"@rollup/rollup-linux-x64-gnu": "4.54.0",
"@rollup/rollup-linux-x64-musl": "4.54.0",
"@rollup/rollup-win32-x64-msvc": "4.54.0"
},
"overrides": {
"agents": {
"@modelcontextprotocol/sdk": "^1.25.1"
},
"@solana/web3.js": "1.95.8"
}
}