-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.json
More file actions
49 lines (49 loc) · 1.33 KB
/
deno.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"tasks": {
"build": "deno run -A scripts/build.ts --out lib",
"build:inline": "deno run -A scripts/build.ts --inline --out lib/browser",
"build:npm": "deno run -A scripts/build_npm.ts",
"bump-version": "deno run -A scripts/version_bump.ts",
"check-version": "deno run -A scripts/check_version.ts",
"test": "deno test -A",
"bench": "deno bench -A"
},
"name": "@fusionstrings/panchangam",
"version": "0.2.1",
"license": "MIT",
"exports": {
".": "./lib/panchangam.js",
"./browser": "./lib/browser/panchangam.js",
"./wasm": "./lib/panchangam.wasm"
},
"publish": {
"include": [
"lib/panchangam.js",
"lib/panchangam.internal.js",
"lib/panchangam.d.ts",
"lib/panchangam.wasm",
"lib/browser/panchangam.js",
"lib/browser/panchangam.internal.js",
"lib/browser/panchangam.d.ts",
"README.md",
"LICENSE",
"deno.json"
],
"exclude": [
"!lib/**"
]
},
"exclude": [
"target",
"npm",
"swisseph-wasm"
],
"imports": {
"@fusionstrings/swisseph-wasi": "jsr:@fusionstrings/swisseph-wasi@0.1.0",
"@std/assert": "jsr:@std/assert@^1.0.16",
"@std/path": "jsr:@std/path@^1.1.4",
"@std/toml": "jsr:@std/toml@^1.0.11",
"@std/fs": "jsr:@std/fs@^1.0.21",
"@deno/wasmbuild": "jsr:@deno/wasmbuild@0.21.0"
}
}