-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "@interledger/publisher-tools",
"version": "0.0.0",
"homepage": "https://github.com/interledger/publisher-tools#readme",
"bugs": "https://github.com/interledger/publisher-tools/issues",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/interledger/publisher-tools"
},
"author": "Arpi <arpad.lengyel@breakpointit.eu>",
"scripts": {
"format": "prettier . --write --cache --cache-location='node_modules/.cache/prettiercache' --log-level=warn",
"format:check": "prettier . --check --cache --cache-location='node_modules/.cache/prettiercache'",
"lint": "eslint . --fix --cache --cache-location 'node_modules/.cache/eslintcache'",
"lint:check": "eslint . --cache --cache-location 'node_modules/.cache/eslintcache'",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@octokit/webhooks-types": "^7.6.1",
"@types/github-script": "github:actions/github-script#v8.0.0",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.0.0",
"prettier": "^3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.52.0"
},
"resolutions": {
"esbuild": "^0.28.0"
},
"pnpm": {
"overrides": {
"wrangler": "^4.59.2"
}
},
"engines": {
"pnpm": "^10.33.0",
"npm": "pnpm",
"yarn": "pnpm",
"node": ">=24.0.0"
},
"private": true,
"packageManager": "pnpm@10.33.0"
}