cognikit 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/package.json +58 -58
- package/public/app.js +13494 -0
- package/public/app.js.map +7 -0
- package/public/assets/audio/failure.mp3 +0 -0
- package/public/assets/audio/flip.mp3 +0 -0
- package/public/assets/audio/low-time.mp3 +0 -0
- package/public/assets/audio/plus.mp3 +0 -0
- package/public/assets/audio/pop.mp3 +0 -0
- package/public/assets/audio/start.mp3 +0 -0
- package/public/assets/audio/success.mp3 +0 -0
- package/public/assets/eduguiders-logo.png +0 -0
- package/public/assets/icons/audio.svg +83 -0
- package/public/assets/icons/data.svg +2 -0
- package/public/assets/icons/down.svg +2 -0
- package/public/assets/icons/drag-horizontal-svgrepo-com.svg +4 -0
- package/public/assets/icons/drag-vertical-svgrepo-com.svg +4 -0
- package/public/assets/icons/error.svg +2 -0
- package/public/assets/icons/eye-disabled.svg +8 -0
- package/public/assets/icons/eye.svg +5 -0
- package/public/assets/icons/image-picture-svgrepo-com-dark.svg +17 -0
- package/public/assets/icons/image.svg +17 -0
- package/public/assets/icons/link.svg +5 -0
- package/public/assets/icons/repeat.svg +7 -0
- package/public/assets/icons/star.svg +4 -0
- package/public/assets/icons/up.svg +2 -0
- package/public/assets/icons/video.svg +6 -0
- package/public/assets/images/pointing-hand.svg +1 -0
- package/public/examples/chip.html +495 -0
- package/public/index.html +754 -0
- package/public/scalable-bare.html +432 -0
- package/public/tables-demo.html +534 -0
- package/public/text-interactions-demo.html +604 -0
package/package.json
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}
|
|
2
|
+
"name": "cognikit",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"author": "Yahir Adolfo de los Santos Beras",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": "https://github.com/YerCodeWorld/cognikit.git",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"psychometrics",
|
|
9
|
+
"quizzes",
|
|
10
|
+
"education",
|
|
11
|
+
"practice",
|
|
12
|
+
"tests",
|
|
13
|
+
"learning",
|
|
14
|
+
"psycology",
|
|
15
|
+
"cognitive"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://github.com/YerCodeWorld/cognikit.git#readme",
|
|
18
|
+
"bugs": "https://github.com/YerCodeWorld/cognikit.git/issues",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"private": false,
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"module": "./dist/index.js",
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": "./dist/index.js",
|
|
27
|
+
"types": "./dist/index.d.ts"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"public",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"browser-sync": "^3.0.4",
|
|
38
|
+
"esbuild": "^0.23.0",
|
|
39
|
+
"npm-run-all": "^4.1.5",
|
|
40
|
+
"rimraf": "^6.0.0",
|
|
41
|
+
"serve": "^14.2.3",
|
|
42
|
+
"typescript": "^5.6.3"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"js-yaml": "^4.1.1"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"clean": "rimraf dist public-dist",
|
|
49
|
+
"types": "tsc -p tsconfig.json",
|
|
50
|
+
"build:lib": "esbuild src/index.ts --bundle --format=esm --platform=browser --outdir=dist --sourcemap --minify --external:react --external:react-dom --loader:.html=text --loader:.css=text",
|
|
51
|
+
"build:demo": "esbuild src/index.ts --bundle --format=esm --platform=browser --outfile=public/app.js --sourcemap --loader:.html=text --loader:.css=text",
|
|
52
|
+
"build": "pnpm clean && pnpm build:lib && pnpm types && pnpm build:demo",
|
|
53
|
+
"dev:build": "esbuild src/index.ts --bundle --format=esm --platform=browser --outfile=public/app.js --sourcemap --watch=forever --loader:.html=text --loader:.css=text",
|
|
54
|
+
"dev:serve": "browser-sync start --server public --port 3008 --files 'public/**/*' --no-open --no-notify",
|
|
55
|
+
"dev": "npm-run-all --parallel dev:build dev:serve",
|
|
56
|
+
"dev:watch": "esbuild src/index.ts --bundle --format=esm --platform=browser --outfile=public/app.js --sourcemap --watch=forever --loader:.html=text --loader:.css=text & while inotifywait -r -e modify,create,delete,move src; do pnpm build:lib; done",
|
|
57
|
+
"serve": "serve public -l 3008"
|
|
58
|
+
}
|
|
59
|
+
}
|