-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 825 Bytes
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
{
"name": "d8code",
"version": "1.0.0",
"description": "Encode binary data as a UTF-8 string that compresses efficiently",
"main": "dist/index.js",
"scripts": {
"test": "bun test",
"lint": "biome check src/",
"format": "biome check --write src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jedisct1/d8code.git"
},
"keywords": [
"encoding",
"string",
"binary",
"javascript",
"typescript",
"compression",
"webassembly"
],
"author": "Frank Denis <npm@pureftpd.org>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jedisct1/d8code/issues"
},
"homepage": "https://github.com/jedisct1/d8code#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/node": "^25.1.0",
"typescript": "^5.9.3"
}
}