lodapav 1.0.0
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/index.js +15 -0
- package/main.jsx +1494 -0
- package/package.json +15 -0
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lodapav",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Drops a main.jsx cheat-sheet of React, JSX, Axios, JS and TS solutions into your current directory.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"lodapav": "./index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"main.jsx"
|
|
12
|
+
],
|
|
13
|
+
"keywords": ["react", "jsx", "axios", "typescript", "cheatsheet"],
|
|
14
|
+
"license": "MIT"
|
|
15
|
+
}
|