-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "servitsy",
"version": "0.4.5",
"license": "MIT",
"description": "Small, local HTTP server for static files",
"keywords": [
"cli",
"http",
"http-server",
"server",
"static"
],
"homepage": "https://github.com/fvsch/servitsy",
"repository": {
"type": "git",
"url": "git+https://github.com/fvsch/servitsy.git"
},
"author": {
"name": "Florens Verschelde",
"url": "https://www.npmjs.com/~fvsch"
},
"type": "module",
"main": "./lib/index.js",
"bin": {
"servitsy": "bin/servitsy.js"
},
"exports": {
".": {
"import": "./lib/index.js"
}
},
"files": [
"./lib",
"./LICENSE",
"./README.md"
],
"scripts": {
"prepack": "npm run build && npm test",
"build": "node scripts/prebuild.js && tsc -p tsconfig.json --listEmittedFiles && prettier --ignore-path='' --write 'lib/*.js'",
"format": "prettier --write '**/*.{css,js,ts}' '**/*config*.json'",
"test": "vitest --run test/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p test/tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "^20.17.7",
"fs-fixture": "^2.6.0",
"linkedom": "^0.18.5",
"prettier": "^3.3.3",
"typescript": "~5.7.2",
"vitest": "^2.1.5"
}
}