@learncard/vpqr-plugin 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -0
- package/README.md +140 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +7 -0
- package/dist/types.d.ts +12 -0
- package/dist/vpqr-plugin.cjs.development.js +5432 -0
- package/dist/vpqr-plugin.cjs.development.js.map +7 -0
- package/dist/vpqr-plugin.cjs.production.min.js +24 -0
- package/dist/vpqr-plugin.cjs.production.min.js.map +7 -0
- package/dist/vpqr-plugin.esm.js +5422 -0
- package/dist/vpqr-plugin.esm.js.map +7 -0
- package/package.json +44 -0
package/package.json
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
{
|
2
|
+
"name": "@learncard/vpqr-plugin",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "",
|
5
|
+
"main": "./dist/index.js",
|
6
|
+
"module": "./dist/vpqr-plugin.esm.js",
|
7
|
+
"private": false,
|
8
|
+
"files": [
|
9
|
+
"dist"
|
10
|
+
],
|
11
|
+
"author": "Learning Economy Foundation (www.learningeconomy.io)",
|
12
|
+
"license": "MIT",
|
13
|
+
"homepage": "https://github.com/WeLibraryOS/LearnCard#readme",
|
14
|
+
"repository": {
|
15
|
+
"type": "git",
|
16
|
+
"url": "git+https://github.com/WeLibraryOS/LearnCard.git"
|
17
|
+
},
|
18
|
+
"bugs": {
|
19
|
+
"url": "https://github.com/WeLibraryOS/LearnCard/issues"
|
20
|
+
},
|
21
|
+
"devDependencies": {
|
22
|
+
"@types/jest": "^29.2.2",
|
23
|
+
"@types/node": "^17.0.31",
|
24
|
+
"aqu": "0.4.3",
|
25
|
+
"esbuild": "^0.14.38",
|
26
|
+
"esbuild-jest": "^0.5.0",
|
27
|
+
"esbuild-plugin-copy": "^1.3.0",
|
28
|
+
"jest": "^29.3.0",
|
29
|
+
"shx": "^0.3.4",
|
30
|
+
"ts-jest": "^29.0.3"
|
31
|
+
},
|
32
|
+
"types": "./dist/index.d.ts",
|
33
|
+
"dependencies": {
|
34
|
+
"@digitalbazaar/vpqr": "^3.0.0",
|
35
|
+
"@learncard/core": "9.0.0",
|
36
|
+
"@learncard/types": "5.3.0"
|
37
|
+
},
|
38
|
+
"scripts": {
|
39
|
+
"build": "node ./scripts/build.mjs && shx cp ./scripts/mixedEntypoint.js ./dist/index.js && tsc --p tsconfig.json",
|
40
|
+
"test": "jest --passWithNoTests",
|
41
|
+
"test:watch": "jest --watch",
|
42
|
+
"test:coverage": "jest --silent --ci --coverage --coverageReporters=\"text\" --coverageReporters=\"text-summary\""
|
43
|
+
}
|
44
|
+
}
|