-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 862 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 862 Bytes
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
{
"name": "structured-field-utils",
"version": "1.0.0",
"description": "Utilities to work with structured fields",
"keywords": [
"structured field",
"structured fields",
"structured header",
"structured headers",
"media-type",
"media type",
"content-type",
"content type"
],
"author": "Rahul Gupta",
"license": "MPL-2.0",
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"files": [
"src/*",
"types/*"
],
"dependencies": {
"structured-headers": "2.0.0-alpha.1"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"scripts": {
"lint": "eslint *.js src/** && prettier *.js src/** --check",
"types": "tsc",
"prepublish": "pnpm run lint && pnpm run types"
}
}