diff --git a/vext-tools/deno.json b/vext-tools/deno.json deleted file mode 100644 index 1ef8fd9..0000000 --- a/vext-tools/deno.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "@vext/tools", - "version": "1.0.0", - "exports": { - ".": "./src/Mod.res.mjs", - "./hook": "./src/hooks/Git.res.mjs" - }, - "tasks": { - "build": "rescript build -with-deps", - "build:watch": "rescript build -w", - "clean": "rescript clean", - "test": "deno test --allow-read --allow-write --allow-net", - "hook:git": "deno run --allow-net --allow-env --allow-read src/hooks/Git.res.mjs", - "hook:install": "deno run --allow-read --allow-write src/hooks/Install.res.mjs" - }, - "imports": { - "@std/path": "jsr:@std/path@^1", - "@std/fs": "jsr:@std/fs@^1", - "@std/cli": "jsr:@std/cli@^1", - "@rescript/core": "npm:@rescript/core@^1" - }, - "compilerOptions": { - "strict": true, - "noImplicitAny": true - }, - "lint": { - "include": ["src/**/*.res.mjs"], - "rules": { - "tags": ["recommended"] - } - }, - "fmt": { - "include": ["src/**/*.res.mjs"], - "useTabs": false, - "lineWidth": 100, - "indentWidth": 2, - "singleQuote": false - } -}