-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
36 lines (36 loc) · 1.57 KB
/
deno.json
File metadata and controls
36 lines (36 loc) · 1.57 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
{
"name": "@hyperpolymath/panll",
"version": "0.1.0",
"exports": "./mod.ts",
"tasks": {
"dev": "cargo tauri dev",
"build": "cargo tauri build",
"bundle": "DENO_NO_PACKAGE_JSON=1 deno run -A scripts/bundle.ts",
"bundle:watch": "DENO_NO_PACKAGE_JSON=1 deno run -A scripts/bundle.ts --watch",
"css:build": "deno run -A npm:tailwindcss -i ./src/styles/input.css -o ./public/styles.css --minify",
"css:watch": "deno run -A npm:tailwindcss -i ./src/styles/input.css -o ./public/styles.css --watch",
"serve:dev": "deno run --allow-net=127.0.0.1:8000 --allow-read=. scripts/dev-server.ts",
"test": "deno test --no-check --allow-read --allow-env tests/",
"test:watch": "deno test --no-check --watch --allow-read --allow-env tests/",
"test:coverage": "deno test --no-check --coverage=coverage/ tests/ && deno coverage coverage/",
"lint": "deno lint scripts/",
"fmt": "deno fmt scripts/",
"mock:echidna": "deno run --allow-net=127.0.0.1:9000 scripts/mock-echidna.ts",
"res:build": "deno run -A npm:rescript build",
"res:clean": "deno run -A npm:rescript clean",
"res:watch": "deno run -A npm:rescript build -w"
},
"imports": {
"@std/": "jsr:@std/",
"@tauri-apps/api": "npm:@tauri-apps/api@^2.10.0",
"@tauri-apps/plugin-dialog": "npm:@tauri-apps/plugin-dialog",
"@tauri-apps/plugin-fs": "npm:@tauri-apps/plugin-fs",
"rescript": "^12.0.0",
"@rescript/core": "npm:@rescript/core@1.6.1",
"@rescript/runtime": "npm:@rescript/runtime@12.2.0/"
},
"compilerOptions": {
"strict": true,
"noImplicitAny": true
}
}