-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "flareutils",
"version": "0.6.3",
"author": "helloimalastair",
"repository": "github:helloimalastair/flareutils",
"main": "dist/index.js",
"devDependencies": {
"@cloudflare/workers-types": "^4.20240405.0",
"@eslint/js": "^9.0.0",
"esbuild": "^0.20.2",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.4",
"typescript-eslint": "^7.6.0",
"vitepress": "1.0.2",
"vue": "^3.4.21",
"wrangler": "^3.48.0"
},
"description": "Small Utilities and little goodies that make developing with Cloudflare easier and faster.",
"files": [
"dist",
"tsconfig.json",
"LICENSE",
"README.md"
],
"homepage": "https://flareutils.pages.dev",
"keywords": [
"flare",
"utilies",
"cloudflare"
],
"license": "See LICENSE",
"scripts": {
"dev": "vitepress dev docs",
"pretty": "prettier --write .",
"lint": "eslint src",
"build": "tsc",
"build:docs": "vitepress build docs"
},
"type": "module",
"typings": "dist/index.d.ts"
}