-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.06 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": "@lxpt/azureflare",
"version": "0.2.0",
"description": "AzureFlare: The opinionated express.js web framework!",
"author": "Laura Ava Streisky <laura@luxploit.net>",
"main": "lib/cjs.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"source": "src/index.ts",
"license": "BSD-4-Clause",
"keywords": [
"express",
"backend",
"server",
"http",
"typescript",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/luxploit/azureflare.git"
},
"files": [
"lib"
],
"exports": {
"import": "./lib/index.js",
"require": "./lib/cjs.js"
},
"scripts": {
"build": "parcel build",
"build-ts": "tsup",
"prepublish": "parcel build"
},
"dependencies": {
"@types/swagger-ui-express": "^4.1.6",
"express": "^4.21.0",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"typescript": "^5.6.2"
},
"devDependencies": {
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/express": "^4.17.21",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"tsup": "^8.3.0"
}
}