-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1009 Bytes
/
package.json
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
{
"name": "data-api",
"version": "1.1.0",
"private": true,
"license": "Apache-2.0",
"source": "src/index.ts",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"repository": "https://github.com/cheqd/data-api.git",
"bugs": {
"url": "https://github.com/cheqd/data-api/issues"
},
"homepage": "https://github.com/cheqd/data-api#readme",
"scripts": {
"start": "npx wrangler dev",
"publish": "npx wrangler publish",
"format": "prettier --write '**/*.{js,ts,cjs,mjs}'"
},
"dependencies": {
"itty-router": "^3.0.12"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240512.0",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"wrangler": "^3.56.0"
},
"engines": {
"node": ">=20.0.0"
}
}