-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "@interscript/api-worker",
"version": "0.1.0",
"description": "Interscript API software \u2014 GraphQL API for transliteration on Cloudflare Workers (or any Workers-compatible runtime). Deploy your own endpoint: see README.",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./maps": {
"types": "./maps/manifest.d.ts",
"default": "./maps/manifest.js"
}
},
"files": [
"dist",
"maps",
"schema"
],
"scripts": {
"build": "tsc -p tsconfig.json && esbuild src/index.ts --bundle --platform=neutral --format=esm --minify --outfile=dist/src/index.js --external:node:* --external:hono --external:graphql-yoga --external:@whatwg-node/fetch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src test",
"format": "prettier --write src test scripts",
"format:check": "prettier --check src test scripts",
"typecheck": "tsc --noEmit",
"fixtures:record": "node scripts/record-fixtures.mjs"
},
"dependencies": {
"hono": "^4.0.0",
"graphql-yoga": "^5.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260811.1",
"@eslint/js": "^9.0.0",
"@types/node": "^26.2.0",
"esbuild": "^0.28.2",
"prettier": "^3.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0",
"wrangler": "^4.0.0"
},
"engines": {
"node": ">=20"
},
"license": "BSD-3-Clause",
"repository": "interscript/api",
"keywords": [
"transliteration",
"graphql",
"cloudflare-workers",
"interscript"
]
}