forked from fb55/encoding-sniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.82 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.82 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
{
"name": "encoding-sniffer",
"version": "0.2.1",
"description": "Implementation of the HTML encoding sniffer algo, with stream support",
"bugs": {
"url": "https://github.com/fb55/encoding-sniffer/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/fb55/encoding-sniffer.git"
},
"funding": "https://github.com/fb55/encoding-sniffer?sponsor=1",
"license": "MIT",
"author": "Felix Boehm <me@feedic.com>",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./sniffer": {
"import": {
"types": "./dist/esm/sniffer.d.ts",
"default": "./dist/esm/sniffer.js"
},
"require": {
"types": "./dist/commonjs/sniffer.d.ts",
"default": "./dist/commonjs/sniffer.js"
}
}
},
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"files": [
"sniffer.js",
"sniffer.d.ts",
"dist"
],
"scripts": {
"build": "tshy",
"build:docs": "typedoc --hideGenerator src/index.ts",
"format": "npm run format:es && npm run format:prettier",
"format:es": "npm run lint:es -- --fix",
"format:prettier": "npm run prettier -- --write",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:prettier",
"lint:es": "eslint .",
"lint:prettier": "npm run prettier -- --check",
"lint:ts": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prettier": "prettier '**/*.{ts,md,json,yml}'",
"test": "npm run test:vi && npm run lint",
"test:vi": "vitest run"
},
"prettier": {
"proseWrap": "always",
"tabWidth": 4
},
"dependencies": {
"@exodus/bytes": "^1.12.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.2.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"tshy": "^3.2.0",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.17"
},
"tshy": {
"exports": {
".": "./src/index.ts",
"./sniffer": "./src/sniffer.ts"
},
"exclude": [
"src/**/*.spec.ts"
]
}
}