forked from feyyazcigim/OpenFacilitator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 804 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 804 Bytes
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
{
"name": "openfacilitator",
"version": "0.1.0",
"private": true,
"description": "Open source platform for deploying x402 payment facilitators",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rawgroundbeef/openfacilitator"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo clean && rm -rf node_modules",
"prepare": "husky || true"
},
"packageManager": "pnpm@9.14.2",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^22.10.1",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"dependencies": {
"remark-gfm": "^4.0.1"
}
}