-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
79 lines (79 loc) · 1.83 KB
/
deno.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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@oazmi/fbicodec",
"version": "0.1.2",
"description": "Forward-Backward-Interfaced general purpose invertible codec library",
"author": "Omar Azmi",
"license": "Anti-Competition License",
"repository": {
"type": "git",
"url": "git+https://github.com/omar-azmi/fbicodec_ts.git"
},
"bugs": {
"url": "https://github.com/omar-azmi/fbicodec_ts/issues"
},
"exports": {
".": "./src/mod.ts",
"./binary_composition_steps": "./src/binary_composition_steps.ts",
"./binary_conditional_steps": "./src/binary_conditional_steps.ts",
"./binary_primitive_steps": "./src/binary_primitive_steps.ts",
"./typedefs": "./src/typedefs.ts"
},
"publish": {
"exclude": [
"./.vscode/",
"./.github/",
"./examples/",
"./test/",
"./build*.ts",
"./clean.ts"
]
},
"test": {
"include": [
"./test/",
"./src/mod.ts"
]
},
"fmt": {
"useTabs": true,
"semiColons": false,
"singleQuote": false,
"lineWidth": 800,
"proseWrap": "never",
"include": [
"./src/"
]
},
"compilerOptions": {
"lib": [
"esnext",
"dom",
"deno.ns"
],
"strict": true,
"allowJs": true
},
"package_json": {
"dependencies": {},
"devDependencies": {
"typescript": "^5.0.0",
"esbuild": "^0.20.1"
},
"keywords": [
"utility",
"modular",
"typescript"
]
},
"node_packageManager": "npm",
"tasks": {
"build-dist": "deno run -A ./build_dist.ts",
"build-docs": "deno run -A ./build_docs.ts",
"build-npm": "deno run -A ./build_npm.ts",
"build-npm-dist": "cd \"./npm/\" && npm run build-dist",
"build-examples": "deno run -A ./build_dist.ts \"./examples/png_parser.ts\" && deno run -A ./build_dist.ts \"./examples/tar_parser.ts\" && deno run -A ./build_dist.ts \"./examples/ogg_parser.ts\"",
"clean": "deno run -A ./clean.ts",
"test": "deno test -A",
"publish-jsr": "deno publish --allow-slow-types"
}
}