-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "schemeit",
"version": "1.2.0",
"description": "A simple & lightweight express-js request validator",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacoobia/schemeit.git"
},
"keywords": [
"expressjs",
"middleware",
"payload",
"schema",
"validator",
"simple",
"basic"
],
"author": "Jacoobia",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacoobia/schemeit/issues"
},
"homepage": "https://github.com/jacoobia/schemeit#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"express": "^4.18.2"
}
}