hc2024-test 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/deno.json +14 -0
  2. package/package.json +2 -5
package/deno.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "imports": {
3
+ "hono": "jsr:@hono/hono@^4.4.13",
4
+ "path": "jsr:@std/path@^0.224.0",
5
+ "fs": "jsr:@std/fs/walk"
6
+ },
7
+ "tasks": {
8
+ "start": "deno serve --inspect=0.0.0.0:9229 --host 0.0.0.0 --no-lock --allow-read --allow-write --allow-env main.ts"
9
+ },
10
+ "compilerOptions": {
11
+ "jsx": "precompile",
12
+ "jsxImportSource": "hono/jsx"
13
+ }
14
+ }
package/package.json CHANGED
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "name": "hc2024-test",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "index.tsx",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
7
7
  },
8
8
  "author": "",
9
9
  "license": "ISC",
10
- "description": "",
11
- "dependencies": {
12
- "mymoduletest": "file:./index.tsx"
13
- }
10
+ "description": ""
14
11
  }