create-arkstack 0.1.0 → 0.1.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 +1 -1
- package/package.json +34 -11
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ This argument is optional and the command will prompt you to enter the installat
|
|
|
46
46
|
|
|
47
47
|
## Contributing
|
|
48
48
|
|
|
49
|
-
Thank you for considering contributing to the Arkstack framework! The [Contribution Guide](https://github.com/
|
|
49
|
+
Thank you for considering contributing to the Arkstack framework! The [Contribution Guide](https://github.com/arkstack-hq/arkstack/blob/main/CONTRIBUTING.md) can be found in the Arkstack documentation and will provide you with all the information you need to get started.
|
|
50
50
|
|
|
51
51
|
## Security Vulnerabilities
|
|
52
52
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-arkstack",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"description": "Scaffold new H3.js or Express.js applications using Toneflix's arkstack templates and starter kits",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/arkstack-hq/arkstack.git",
|
|
9
|
+
"directory": "create-arkstack"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"toneflix",
|
|
13
|
+
"create-arkstack",
|
|
14
|
+
"h3",
|
|
15
|
+
"express",
|
|
16
|
+
"scaffold",
|
|
17
|
+
"template",
|
|
18
|
+
"starter kit",
|
|
19
|
+
"cli",
|
|
20
|
+
"generator",
|
|
21
|
+
"boilerplate",
|
|
22
|
+
"project setup",
|
|
23
|
+
"node.js",
|
|
24
|
+
"javascript",
|
|
25
|
+
"typescript",
|
|
26
|
+
"web development",
|
|
27
|
+
"full-stack",
|
|
28
|
+
"backend",
|
|
29
|
+
"framework",
|
|
30
|
+
"web server",
|
|
31
|
+
"api",
|
|
32
|
+
"microservices",
|
|
33
|
+
"serverless",
|
|
34
|
+
"cloud",
|
|
35
|
+
"dev tools",
|
|
36
|
+
"productivity",
|
|
37
|
+
"arkstack"
|
|
38
|
+
],
|
|
6
39
|
"main": "build/index.js",
|
|
7
40
|
"private": false,
|
|
8
41
|
"publishConfig": {
|
|
@@ -14,16 +47,6 @@
|
|
|
14
47
|
"exports": {
|
|
15
48
|
".": "./bin/run.js"
|
|
16
49
|
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"toneflix",
|
|
19
|
-
"create-arkstack",
|
|
20
|
-
"h3",
|
|
21
|
-
"express",
|
|
22
|
-
"scaffold",
|
|
23
|
-
"template",
|
|
24
|
-
"starter kit",
|
|
25
|
-
"cli"
|
|
26
|
-
],
|
|
27
50
|
"files": [
|
|
28
51
|
"bin",
|
|
29
52
|
"bin/run.d.ts",
|