-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
{
"name": "passerve",
"version": "1.1.6",
"date": "25.01.13",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"bin": {
"passerve": "bin/passerve.js"
},
"author": "llcawc",
"license": "MIT",
"homepage": "https://github.com/llcawc/passerve",
"description": "Simple static server for local development",
"keywords": [
"local",
"server",
"frontend",
"express"
],
"repository": {
"type": "git",
"url": "git+https://github.com/llcawc/passerve.git"
},
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"lint": "eslint ./lib",
"lint:fix": "eslint ./lib --fix",
"test": "npx .",
"build": "node ./lib/getver.js && tsc"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^13.0.0",
"express": "^4.21.2"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-embed": "^0.4.15",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
}
}