This repository was archived by the owner on Aug 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "x-law",
"version": "0.3.1",
"description": "A-Law and mu-Law codecs for JavaScript/TypeScript",
"homepage": "https://nitodeco.github.io/xlaw/",
"author": "Nico Möhn <nitodeco@users.noreply.github.com>",
"contributors": [
"Rafael da Silva Rocha <rocha.rafaelsilva@gmail.com>"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"type": "module",
"keywords": [
"A-Law",
"mu-Law",
"audio",
"codec",
"encode",
"decode",
"compander",
"companding",
"PCM",
"streaming"
],
"repository": {
"type": "git",
"url": "git://github.com/nitodeco/xlaw.git"
},
"bugs": {
"url": "https://github.com/nitodeco/xlaw/issues"
},
"scripts": {
"format": "prettier --write .",
"precommit": "husky",
"build": "npm run precommit && tsup",
"docs": "typedoc --entryPointStrategy Expand src/index.ts --out docs --plugin typedoc-github-theme",
"validate": "npm run precommit && npm run build && npm run docs"
},
"devDependencies": {
"@types/node": "^22.10.7",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typedoc-github-theme": "^0.2.1",
"typescript": "^5.0.0"
}
}