-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 955 Bytes
/
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
{
"name": "entofu",
"version": "1.0.0-alpha.3",
"description": "Encodes binary data as valid unassigned Unicode code points, also known as tofu.",
"keywords": [
"tofu",
"unicode",
"utf8",
"binary",
"text",
"encoding",
"decoding",
"detofu",
"base",
"262144",
"base262144"
],
"author": "Joakim Stai",
"homepage": "https://github.com/joakim/entofu#readme",
"bugs": "https://github.com/joakim/entofu/issues",
"type": "module",
"sideEffects": false,
"main": "./dist/entofu.js",
"module": "./dist/entofu.mjs",
"types": "./dist/entofu.d.ts",
"files": [
"./entofu.ts",
"./dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joakim/entofu.git"
},
"scripts": {
"build": "tsc && bun build entofu.ts --outfile=dist/entofu.mjs"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"typescript": "^5.0.0"
}
}