-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
51 lines (51 loc) · 1.14 KB
/
deno.json
File metadata and controls
51 lines (51 loc) · 1.14 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
50
51
{
"name": "@fusionstrings/vite-plugin-cid",
"version": "0.1.2",
"exports": {
".": "./src/index.ts",
"./cid": "./src/cid.ts"
},
"compilerOptions": {
"lib": [
"dom",
"esnext",
"deno.ns",
"deno.unstable"
]
},
"license": "MIT",
"tasks": {
"dev": "cd playground && deno run --watch -A npm:vite@7.2.4 build --watch",
"build": "cd playground && deno run -A npm:vite@7.2.4 build",
"test": "deno test --allow-read --allow-write --allow-env --allow-ffi --allow-run --allow-sys",
"check": "deno check",
"lint": "deno lint",
"fmt": "deno fmt",
"fmt:check": "deno fmt --check",
"docs": "deno doc --html --name='CID Vite Plugin' --output=./docs ./src/index.ts ./src/cid.ts"
},
"publish": {
"exclude": [
".github",
".vitepress",
"playground",
"dist",
"docs",
"node_modules",
"*.test.ts",
"vitest.config.ts"
]
},
"imports": {
"vite": "npm:vite@7.2.4",
"rollup": "npm:rollup@4.30.1",
"multiformats": "npm:multiformats@13.4.1",
"@ipld/dag-pb": "npm:@ipld/dag-pb@4.1.5",
"@std/assert": "jsr:@std/assert@1",
"@std/path": "jsr:@std/path@1"
},
"nodeModulesDir": "auto",
"fmt": {
"useTabs": true
}
}