quidproquo 0.0.1 → 0.0.165
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 +15 -5
- package/lib/commonjs/index.d.ts +2 -0
- package/lib/commonjs/index.js +18 -0
- package/package.json +35 -14
- package/index.js +0 -3
package/README.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
# quidproquo
|
|
2
|
+
|
|
3
|
+
JS Library for building web servers using pure functions and generators.
|
|
4
|
+
|
|
5
|
+
** THIS IS NO PROD READY DO NOT USED **
|
|
6
|
+
|
|
7
|
+
## tsconfig
|
|
8
|
+
|
|
9
|
+
core for quidproquo library packages ~ Should probably not be used by itself
|
|
10
|
+
|
|
11
|
+
use `quidproquo`
|
|
12
|
+
|
|
13
|
+
### Note
|
|
14
|
+
|
|
15
|
+
Currently under development ~ Not for production
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("quidproquo-core"), exports);
|
|
18
|
+
__exportStar(require("quidproquo-webserver"), exports);
|
package/package.json
CHANGED
|
@@ -1,14 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "quidproquo",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "quidproquo",
|
|
3
|
+
"version": "0.0.165",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./lib/commonjs/index.js",
|
|
6
|
+
"types": "./lib/commonjs/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib/**/*"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
|
+
"clean": "npx rimraf lib",
|
|
13
|
+
"build": "npm run clean && tsc -p tsconfig.commonjs.json",
|
|
14
|
+
"watch": "tsc -p tsconfig.commonjs.json -w"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/joe-coady/quidproquo.git"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [],
|
|
21
|
+
"author": "",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/joe-coady/quidproquo/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/joe-coady/quidproquo#readme",
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"typescript": "^4.9.3",
|
|
29
|
+
"quidproquo-tsconfig": "*"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"quidproquo-core": "*",
|
|
33
|
+
"quidproquo-webserver": "*"
|
|
34
|
+
}
|
|
35
|
+
}
|
package/index.js
DELETED