|
1 | 1 | { |
2 | | - "unstable": [ |
3 | | - "raw-imports" |
4 | | - ], |
5 | 2 | "tasks": { |
6 | | - "dev": "deno run -A --watch main.js" |
7 | | - "bundle:sdk": "deno bundle --platform=browser --output=dist/sdk.bundle.js src/sdk/mod.js", |
8 | | - "bundle:sdk:min": "deno bundle --platform=browser --output=dist/sdk.bundle.min.js --minify src/sdk/mod.js", |
9 | | - "bundle:auth": "deno bundle --unstable-raw-imports --platform=browser --output=dist/signet-auth.bundle.min.js --minify src/sdk/components/signet-auth/main.ts", |
10 | | - "minify:sdk": "deno task bundle:sdk:min", |
11 | | - "compress": "deno run --allow-read --allow-write src/cli/compress.js", |
12 | | - "wc": "deno bundle --code-splitting --unstable-raw-imports --platform browser --outdir ./dist/ --output ./dist/sdk.bundle.min.js ./src/sdk/components/signet-auth/main.ts && deno task compress", |
13 | | - "build": "deno task bundle:sdk && deno task bundle:sdk:min && deno task compress" |
14 | | - |
| 3 | + "dev": "deno run -A --watch main.js", |
| 4 | + "build": "deno run -A scripts/build.js", |
| 5 | + "start": "deno run -A server.js" |
15 | 6 | }, |
16 | 7 | "imports": { |
17 | | - "@std/assert": "jsr:@std/assert@^1.0.16", |
18 | | - "Hono": "npm:hono@^4.11.1", |
| 8 | + "@std/fs": "https://deno.land/std@0.177.0/fs/mod.ts", |
| 9 | + "@std/path": "https://deno.land/std@0.177.0/path/mod.ts", |
| 10 | + "hono": "npm:hono@^4.11.1", |
| 11 | + "hono/deno": "npm:hono@^4.11.1/deno", |
19 | 12 | "autoprefixer": "npm:autoprefixer@10.4.23", |
| 13 | + "cssnano": "npm:cssnano@^7.0.1", |
20 | 14 | "postcss": "npm:postcss@8.5.6", |
21 | | - "postcss-font-grabber": "npm:postcss-font-grabber@3.1.0", |
22 | | - "postcss-import": "npm:postcss-import@16.1.1" |
| 15 | + "postcss-cli": "npm:postcss-cli@^11.0.0", |
| 16 | + "postcss-import": "npm:postcss-import@16.1.1", |
| 17 | + "postcss-preset-env": "npm:postcss-preset-env@^9.5.11" |
23 | 18 | } |
24 | 19 | } |
0 commit comments