-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 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
{
"$schema": "https://json.schemastore.org/package",
"name": "@kayahr/text-encoding",
"version": "2.1.0",
"type": "module",
"description": "Text encoder and decoder",
"keywords": [
"typescript",
"text",
"text-encoder",
"text-decoder",
"encodings",
"text-encodings",
"encoding",
"encode",
"decoding",
"decode"
],
"license": "MIT",
"author": "Klaus Reimer <k@ailis.de>",
"repository": "github:kayahr/text-encoding",
"homepage": "https://github.com/kayahr/text-encoding",
"bugs": "https://github.com/kayahr/text-encoding/issues",
"funding": "https://github.com/kayahr/text-encoding?sponsor=1",
"publishConfig": {
"access": "public"
},
"files": [
"lib/main/",
"src/main/",
"data/"
],
"exports": {
".": "./lib/main/index.js",
"./no-encodings": "./lib/main/index-no-encodings.js",
"./encodings/*.js": "./lib/main/encodings/*.js",
"./encodings/*": "./lib/main/encodings/*.js",
"./encodings": "./lib/main/encodings.js"
},
"scripts": {
"clean": "rm -rf lib",
"build": "run build:*",
"build:compile": "tsc",
"test": "run test:*",
"test:unit": "ntest",
"test:lint": "oxlint --type-aware --deny-warnings",
"test:apidoc": "typedoc --emit none",
"test:spell": "cspell --no-progress --no-summary",
"apidoc": "typedoc",
"prepare": "run clean build"
},
"devDependencies": {
"@kayahr/assert": "1.4.1",
"@kayahr/cspell": "9.7.0-bundle.1",
"@kayahr/npm-utils": "1.1.2",
"@kayahr/ntest": "1.3.0",
"@kayahr/oxlint-config": "1.31.1",
"@kayahr/typedoc": "0.28.18-bundle.1",
"@types/node": "25.5.0",
"typescript": "6.0.2"
}
}