diff --git a/scripts/deno.json b/scripts/deno.json deleted file mode 100644 index 4f99cb0..0000000 --- a/scripts/deno.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "@hyperpolymath/grimrepo-scripts", - "version": "1.0.0", - "tasks": { - "build": "deno run -A npm:rescript", - "build-userscripts": "deno run --allow-read --allow-write --allow-env build-userscripts.ts", - "build-all": "deno run -A npm:rescript && deno run --allow-read --allow-write --allow-env build-userscripts.ts && cp dist/*.user.js userscripts/", - "dev": "deno run -A npm:rescript -w", - "clean": "rm -rf dist/ userscripts/ && find src -name '*.mjs' -delete", - "fmt": "deno run -A npm:rescript format src/**/*.res", - "check": "deno run -A npm:rescript" - }, - "imports": { - "rescript": "^12.0.0" - }, - "compilerOptions": { - "allowJs": true - } -} diff --git a/scripts/docs/examples/grimpager/deno.json b/scripts/docs/examples/grimpager/deno.json deleted file mode 100644 index 6ae3e50..0000000 --- a/scripts/docs/examples/grimpager/deno.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "GrimPager", - "version": "1.0.0", - "description": "Perpetual pages - Powerful auto-pager script", - "author": "Jonathan D.A. Jewell ", - "license": "MPL-2.0", - "tasks": { - "build": "rescript build -with-deps && deno run --allow-read --allow-write --allow-env --allow-run --allow-net src/Build.bs.js", - "build:prod": "rescript build -with-deps && deno run --allow-read --allow-write --allow-env --allow-run --allow-net src/BuildProd.bs.js", - "dev": "rescript build -w" - }, - "userScript": { - "namespace": "https://github.com/hyperpolymath", - "description": "Perpetual pages - Powerful auto-pager script built with ReScript", - "author": "Jonathan D.A. Jewell", - "homepage": "https://github.com/hyperpolymath/grimrepo-scripts", - "supportURL": "https://github.com/hyperpolymath/grimrepo-scripts/issues", - "match": ["*://*/*"], - "grant": [ - "GM.xmlHttpRequest", - "GM.registerMenuCommand", - "GM.getValue", - "GM.setValue", - "GM.addStyle" - ], - "runAt": "document-end" - }, - "greasyfork": { - "scriptId": "YOUR_SCRIPT_ID_HERE", - "apiKey": "STORE_IN_ENV_VAR", - "autoPublish": false - }, - "imports": { - "esbuild": "npm:esbuild@0.19.11" - } -} diff --git a/scripts/docs/examples/grimtemplate/deno.json b/scripts/docs/examples/grimtemplate/deno.json deleted file mode 100644 index 805a9dd..0000000 --- a/scripts/docs/examples/grimtemplate/deno.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "GrimTemplateEngine", - "version": "1.0.0", - "description": "Intelligent Repository Health Agent", - "author": "Jonathan D.A. Jewell ", - "license": "MPL-2.0", - "tasks": { - "build": "rescript build -with-deps && deno run --allow-read --allow-write --allow-env --allow-run --allow-net src/Build.bs.js", - "dev": "rescript build -w" - }, - "userScript": { - "namespace": "https://github.com/hyperpolymath", - "description": "Intelligent repository health agent with smart templates", - "author": "Jonathan D.A. Jewell", - "homepage": "https://github.com/hyperpolymath/grimrepo-scripts", - "supportURL": "https://github.com/hyperpolymath/grimrepo-scripts/issues", - "match": [ - "*://github.com/*/*", - "*://gitlab.com/*/*", - "*://bitbucket.org/*/*", - "*://codeberg.org/*/*", - "*://sr.ht/*/*" - ], - "grant": [ - "GM.getValue", - "GM.setValue", - "GM.addStyle" - ], - "runAt": "document-end" - }, - "greasyfork": { - "scriptId": "YOUR_SCRIPT_ID_HERE", - "apiKey": "${GREASYFORK_API_KEY}", - "autoPublish": false - }, - "imports": { - "esbuild": "npm:esbuild@0.19.11" - } -} diff --git a/scripts/docs/examples/regreaseproject/deno.json b/scripts/docs/examples/regreaseproject/deno.json deleted file mode 100644 index 4220d48..0000000 --- a/scripts/docs/examples/regreaseproject/deno.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "my-userscript", - "version": "1.0.0", - "license": "MPL-2.0", - "tasks": { - "build": "rescript build -with-deps && deno run --allow-read --allow-write --allow-env --allow-run src/Build.bs.js", - "dev": "rescript build -w" - }, - "userScript": { - "namespace": "https://github.com/hyperpolymath", - "description": "Example ReScript UserScript built with ReGrease", - "match": [ - "*://greasyfork.org/*", - "*://sleazyfork.org/*" - ], - "grant": [ - "GM.setValue", - "GM.getValue", - "GM.deleteValue", - "GM.listValues" - ], - "runAt": "document-start" - }, - "imports": { - "esbuild": "npm:esbuild@0.19.11" - } -}