-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "braille-codec",
"version": "0.0.1",
"description": "Braille encoding and decoding library",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "vitest --run",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"bin": {
"braille-decode": "bin/braille-decode"
},
"keywords": [
"braille",
"BRL"
],
"author": "Joseph Lee <joseph@jc-lab.net>",
"license": "Apache-2.0",
"homepage": "https://github.com/jc-lab/braille-codec#readme",
"bugs": {
"url": "https://github.com/jc-lab/braille-codec/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jc-lab/braille-codec.git"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
}
}