-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.47 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@sapphire/iana-mime-types",
"version": "1.32.0",
"description": "Fully automated repository that updates a list of IANA MIME types",
"author": "@sapphire",
"license": "MIT",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/cjs/index.d.cts",
"exports": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist/"
],
"scripts": {
"lint": "eslint src --ext ts --fix",
"test": "vitest run",
"format": "prettier --write .",
"build": "tsup && yarn exec mv dist/esm/index.d.ts dist/esm/index.d.mts",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"prepack": "yarn build",
"sync-mime-types": "tsx scripts/sync-mime-types.mts"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@favware/cliff-jumper": "^6.0.0",
"@sapphire/eslint-config": "^5.0.6",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.3",
"@types/node": "^22.19.15",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=v20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphiredev/iana-mime-types.git"
},
"bugs": {
"url": "https://github.com/sapphiredev/iana-mime-types/issues"
},
"homepage": "https://github.com/sapphiredev/iana-mime-types",
"keywords": [
"iana",
"mime",
"types",
"sapphire"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"!(*.js|*.mjs|*.ts)": [
"prettier --ignore-unknown --write"
],
"*.{mjs,js,ts,tsx}": [
"eslint --fix",
"prettier --ignore-unknown --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "yarn@4.12.0"
}