phantomback 1.0.0 → 1.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 +12 -1
- package/package.json +9 -1
- package/src/cli/commands.js +1 -1
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
[](https://www.npmjs.com/package/phantomback)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](package.json)
|
|
10
|
+
[](https://phantombackxdocs.vercel.app)
|
|
10
11
|
|
|
11
12
|
**Stop waiting for the backend. Start building now.**
|
|
12
13
|
|
|
@@ -456,4 +457,14 @@ All responses follow a consistent format:
|
|
|
456
457
|
|
|
457
458
|
## 📄 License
|
|
458
459
|
|
|
459
|
-
MIT © [Madhav Chaturvedi](https://github.com/
|
|
460
|
+
MIT © [Madhav Chaturvedi](https://github.com/madhavxchaturvedi)
|
|
461
|
+
|
|
462
|
+
---
|
|
463
|
+
|
|
464
|
+
<div align="center">
|
|
465
|
+
|
|
466
|
+
[Documentation](https://phantombackxdocs.vercel.app) · [npm](https://www.npmjs.com/package/phantomback) · [GitHub](https://github.com/madhavxchaturvedi/npm-phantomback)
|
|
467
|
+
|
|
468
|
+
Made by [Madhav Chaturvedi](https://madhavxchaturvedi.vercel.app) · [LinkedIn](https://www.linkedin.com/in/madhavxchaturvedi/) · [Instagram](https://www.instagram.com/madhavxchaturvedi)
|
|
469
|
+
|
|
470
|
+
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phantomback",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Instant fake backend generator with smart responses & chaos engineering. Drop in your API schema → get a fully functional, stateful REST server with realistic data, auth, pagination, filtering, and Reality Mode for chaos testing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -36,6 +36,14 @@
|
|
|
36
36
|
],
|
|
37
37
|
"author": "Madhav Chaturvedi",
|
|
38
38
|
"license": "MIT",
|
|
39
|
+
"homepage": "https://phantombackxdocs.vercel.app",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/madhavxchaturvedi/npm-phantomback.git"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/madhavxchaturvedi/npm-phantomback/issues"
|
|
46
|
+
},
|
|
39
47
|
"engines": {
|
|
40
48
|
"node": ">=18.0.0"
|
|
41
49
|
},
|
package/src/cli/commands.js
CHANGED