-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.04 KB
/
package.json
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
{
"$schema": "http://json.schemastore.org/package",
"name": "@kayahr/text-encoding",
"version": "2.0.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 <[email protected]>",
"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": "rimraf lib",
"build": "run-s build:*",
"build:compile": "tsc",
"test": "run-s test:*",
"test:unit": "vitest run",
"test:lint": "eslint --max-warnings 0",
"test:apidoc": "typedoc --emit none",
"test:spell": "cspell --no-progress --no-summary",
"apidoc": "typedoc",
"install:browser": "playwright install chromium",
"prepare": "run-s install:browser clean build"
},
"devDependencies": {
"@kayahr/eslint-config": "3.3.0",
"@kayahr/vitest-matchers": "1.1.0",
"@types/node": "22.10.5",
"@vitest/browser": "2.1.8",
"@vitest/coverage-v8": "2.1.8",
"base64-js": "1.5.1",
"cspell": "8.17.1",
"npm-run-all": "4.1.5",
"playwright": "1.49.1",
"rimraf": "6.0.1",
"typedoc": "0.27.6",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}