-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "modern-flash",
"version": "1.3.2",
"description": "Modern TypeScript rewrite of express-flash, allowing data such as error/success notifications to be temporarily stored in the session.",
"author": "Adam Demasi <[email protected]>",
"contributors": [
"Aarnav Tale <[email protected]>"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts --clean",
"lint": "eslint ./src",
"lint:fix": "pnpm -s lint -- --fix",
"prepublishOnly": "pnpm -s run build",
"push": "np",
"test": "pnpm -s lint"
},
"keywords": [
"connect-flash",
"express",
"express-flash",
"flash",
"tinyhttp"
],
"engines": {
"node": ">=16.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chariz/modern-flash.git"
},
"bugs": {
"url": "https://github.com/chariz/modern-flash/issues"
},
"homepage": "https://github.com/chariz/modern-flash#readme",
"devDependencies": {
"@tinyhttp/app": "^2.0.16",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-chariz": "^1.1.0",
"jest": "^27.4.7",
"np": "^7.6.0",
"tsup": "^5.11.13",
"typescript": "^4.3.5"
}
}