-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
46 lines (46 loc) · 1.05 KB
/
deno.json
File metadata and controls
46 lines (46 loc) · 1.05 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": "@petamoriken/pxtone",
"version": "4.1.3",
"exports": {
".": "./src/Pxtone.ts",
"./bundle": "./bundle/Pxtone.mjs"
},
"license": "MIT",
"publish": {
"exclude": [
"tests/",
"tools/",
"npm/",
"node_modules/",
".github/",
".vscode/",
"vite.config.ts",
"bundle/Pxtone.js",
"bundle/Pxtone.js.map",
"deno.lock",
"!bundle/Pxtone.mjs",
"!bundle/Pxtone.mjs.map",
"!bundle/Pxtone.d.mts"
]
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.42.3",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/toml": "jsr:@std/toml@^1.0.11",
"typescript": "npm:typescript@^6.0.3",
"vite": "npm:vite@^8.0.10"
},
"compilerOptions": {
"lib": ["dom", "dom.iterable", "deno.ns"]
},
"tasks": {
"build": "vite build && deno run -A tools/build_dts.ts",
"build:npm": "deno run -A tools/build_npm.ts",
"test": "deno test --allow-read=tests/ tests/"
},
"fmt": {
"lineWidth": 100
},
"exclude": ["bundle", "npm"],
"nodeModulesDir": "auto"
}