-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 KB
/
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
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
{
"name": "@blankstorm/api",
"version": "0.5.4",
"description": "public Blankstorm API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/frontend/index.d.ts",
"default": "./dist/frontend/index.js"
},
"./*": "./dist/frontend/*"
},
"typesVersions": {
"*": {
"*": [
"./dist/frontend/*"
]
}
},
"type": "module",
"files": [
"dist",
"license.md"
],
"scripts": {
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint src functions && tsc --project tsconfig.json --noEmit",
"build:frontend": "node scripts/build.js",
"build:docs": "typedoc src/frontend/index.ts --includeVersion --readme readme.md --darkHighlightTheme monokai --lightHighlightTheme monokai",
"prepublishOnly": "npm run build:frontend",
"dev": "wrangler pages dev public --compatibility-flags='nodejs_compat' --ip localhost"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blankstorm/api.git"
},
"keywords": [
"blankstorm",
"api"
],
"author": "James Prevett <[email protected]> (https://jamespre.dev)",
"license": "See license.md",
"bugs": {
"url": "https://github.com/blankstorm/api/issues"
},
"homepage": "https://blankstorm.net",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240129.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"http-status-codes": "^2.3.0",
"prettier": "^3.2.4",
"typedoc": "^0.25.0",
"typescript": "^5.2.2"
}
}