supertaskr 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # supertaskr
2
+
3
+ Reserved for supertaskr. The CLI arrives with v1.
4
+
5
+ https://github.com/juhosarvanco/supertaskr
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log("Reserved for supertaskr. The CLI arrives with v1. https://github.com/juhosarvanco/supertaskr");
3
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "supertaskr",
3
+ "version": "0.0.1",
4
+ "description": "Reserved for supertaskr. The CLI arrives with v1.",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "supertaskr": "bin/supertaskr.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/juhosarvanco/supertaskr.git"
16
+ },
17
+ "homepage": "https://github.com/juhosarvanco/supertaskr",
18
+ "keywords": [
19
+ "supertaskr",
20
+ "agents",
21
+ "development-method"
22
+ ],
23
+ "engines": {
24
+ "node": ">=18"
25
+ }
26
+ }