1 | {
|
2 | "name": "chardet",
|
3 | "version": "2.0.0",
|
4 | "homepage": "https://github.com/runk/node-chardet",
|
5 | "description": "Character encoding detector",
|
6 | "license": "MIT",
|
7 | "repository": {
|
8 | "type": "git",
|
9 | "url": "https://github.com/runk/node-chardet.git"
|
10 | },
|
11 | "bugs": {
|
12 | "mail": "deadrunk@gmail.com",
|
13 | "url": "http://github.com/runk/node-chardet/issues"
|
14 | },
|
15 | "scripts": {
|
16 | "build": "rm -rf lib/* && tsc",
|
17 | "format": "prettier --write ./src/**/*.ts",
|
18 | "format:check": "prettier --list-different ./src/**/*.ts",
|
19 | "test": "jest",
|
20 | "prepublish": "npm run build",
|
21 | "semantic-release": "semantic-release"
|
22 | },
|
23 | "files": [
|
24 | "lib"
|
25 | ],
|
26 | "main": "lib/index.js",
|
27 | "typings": "lib/index.d.ts",
|
28 | "engine": {
|
29 | "node": ">=4"
|
30 | },
|
31 | "readmeFilename": "README.md",
|
32 | "directories": {
|
33 | "test": "test"
|
34 | },
|
35 | "devDependencies": {
|
36 | "@types/jest": "^29.0.0",
|
37 | "@types/node": "^18.0.0",
|
38 | "jest": "^29.0.0",
|
39 | "prettier": "^3.0.0",
|
40 | "semantic-release": "^21.0.0",
|
41 | "ts-jest": "^29.0.0",
|
42 | "ts-node": "^10.9.1",
|
43 | "typescript": "^5.0.0"
|
44 | },
|
45 | "keywords": [
|
46 | "encoding",
|
47 | "character",
|
48 | "utf8",
|
49 | "detector",
|
50 | "chardet",
|
51 | "icu",
|
52 | "character detection",
|
53 | "character encoding",
|
54 | "language",
|
55 | "iconv",
|
56 | "iconv-light",
|
57 | "UTF-8",
|
58 | "UTF-16",
|
59 | "UTF-32",
|
60 | "ISO-2022-JP",
|
61 | "ISO-2022-KR",
|
62 | "ISO-2022-CN",
|
63 | "Shift_JIS",
|
64 | "Big5",
|
65 | "EUC-JP",
|
66 | "EUC-KR",
|
67 | "GB18030",
|
68 | "ISO-8859-1",
|
69 | "ISO-8859-2",
|
70 | "ISO-8859-5",
|
71 | "ISO-8859-6",
|
72 | "ISO-8859-7",
|
73 | "ISO-8859-8",
|
74 | "ISO-8859-9",
|
75 | "windows-1250",
|
76 | "windows-1251",
|
77 | "windows-1252",
|
78 | "windows-1253",
|
79 | "windows-1254",
|
80 | "windows-1255",
|
81 | "windows-1256",
|
82 | "KOI8-R"
|
83 | ],
|
84 | "author": "Dmitry Shirokov <deadrunk@gmail.com>",
|
85 | "contributors": [
|
86 | "@spikying",
|
87 | "@wtgtybhertgeghgtwtg",
|
88 | "@suisho",
|
89 | "@seangarner",
|
90 | "@zevanty"
|
91 | ],
|
92 | "browser": {
|
93 | "./lib/fs/node.js": "./lib/fs/browser.js"
|
94 | }
|
95 | }
|