-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
44 lines (44 loc) · 2.2 KB
/
Copy pathdeno.json
File metadata and controls
44 lines (44 loc) · 2.2 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
{
"name": "@claudiu-ceia/dhash",
"version": "0.7.3",
"license": "MIT",
"exports": "./mod.ts",
"lock": {
"path": "./deno.lock",
"frozen": true
},
"nodeModulesDir": "auto",
"publish": {
"include": [
"LICENSE",
"README.md",
"deno.json",
"mod.ts",
"src",
"docs/readme/README.md",
"docs/readme/*.webp"
]
},
"tasks": {
"build:css": "deno run --config docs/deno.json --frozen -A npm:@tailwindcss/cli@4.3.3 -i docs/tailwind.css -o docs/styles.css --minify",
"check": "deno task check:css && deno fmt --check scripts docs && deno lint && deno check mod.ts scripts/check_manifests.ts scripts/generate_fixtures.ts scripts/package_metadata.ts scripts/pack_npm.ts scripts/test_npm.ts scripts/verify_jsr.ts scripts/smoke_demo.ts && deno check --config deno.test.json examples/compare.ts examples/compare-bytes.ts && deno check --frozen --config docs/deno.json docs/main.ts && deno task test",
"check:css": "deno task build:css && git diff --exit-code -- docs/styles.css",
"check:npm": "deno run -A scripts/test_npm.ts",
"check:ts7": "deno check --unstable-tsgo mod.ts scripts/check_manifests.ts scripts/generate_fixtures.ts scripts/package_metadata.ts scripts/pack_npm.ts scripts/test_npm.ts scripts/verify_jsr.ts scripts/smoke_demo.ts && deno check --unstable-tsgo --config deno.test.json examples/compare.ts examples/compare-bytes.ts && deno check --frozen --unstable-tsgo --config docs/deno.json docs/main.ts && deno task test:ts7",
"pack:npm": "deno run -A scripts/pack_npm.ts",
"test": "deno task test:lib && deno task test:demo",
"test:demo": "deno test --frozen --config docs/deno.json --allow-read --allow-ffi --allow-env docs",
"test:lib": "deno test --config deno.test.json --allow-read --allow-write --allow-ffi --allow-env",
"test:ts7": "deno test --unstable-tsgo --config deno.test.json --allow-read --allow-write --allow-ffi --allow-env && deno test --frozen --unstable-tsgo --config docs/deno.json --allow-read --allow-ffi --allow-env docs"
},
"fmt": {
"exclude": [
"docs/styles.css",
"scripts/check_manifests.ts",
"scripts/package_metadata.ts"
]
},
"imports": {
"sharp": "npm:sharp@0.35.4"
}
}