@citolab/qti-components 6.9.1-beta.4 → 6.9.1-beta.6
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/dist/custom-elements.json +76 -76
- package/dist/item.css +2 -2
- package/dist/qti-components/index.js +1 -1
- package/package.json +25 -9
package/package.json
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@citolab/qti-components",
|
|
3
|
-
"repository":
|
|
3
|
+
"repository": {
|
|
4
|
+
"type": "git",
|
|
5
|
+
"url": "git+https://github.com/Citolab/qti-components.git"
|
|
6
|
+
},
|
|
4
7
|
"description": "QTI webcomponents",
|
|
5
|
-
"author":
|
|
8
|
+
"author": {
|
|
9
|
+
"name": "Patrick de Klein"
|
|
10
|
+
},
|
|
6
11
|
"contributors": [
|
|
7
|
-
|
|
8
|
-
|
|
12
|
+
{
|
|
13
|
+
"name": "Sander Looise"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "Marcel Hoekstra"
|
|
17
|
+
}
|
|
9
18
|
],
|
|
10
19
|
"license": "GPLv3",
|
|
11
20
|
"private": false,
|
|
12
21
|
"engines": {
|
|
13
22
|
"node": ">=20.0.0"
|
|
14
23
|
},
|
|
15
|
-
"version": "6.9.1-beta.
|
|
24
|
+
"version": "6.9.1-beta.6",
|
|
16
25
|
"type": "module",
|
|
17
26
|
"exports": {
|
|
18
27
|
"./qti-components": "./dist/qti-components/index.js",
|
|
@@ -42,15 +51,16 @@
|
|
|
42
51
|
"build-lib": "tsx scripts/build.ts",
|
|
43
52
|
"watch-lib": "nodemon --watch \"src/**\" --ext \"ts,json,css\" --ignore \"src/**/*.spec.ts\" --exec \"tsx scripts/build.ts\" watch",
|
|
44
53
|
"storybook": "storybook dev -p 6006",
|
|
45
|
-
"storybook
|
|
46
|
-
"storybook
|
|
54
|
+
"build-storybook": "storybook build",
|
|
55
|
+
"test-storybook": "test-storybook",
|
|
47
56
|
"cem": "cem analyze --watch",
|
|
48
57
|
"lint": "eslint src/lib/**",
|
|
49
58
|
"arethetypeswrong": "wireit",
|
|
50
59
|
"----hooks----": "-",
|
|
51
60
|
"prepublishOnly": "echo 'calling prepublishOnly as npm lifecycle hook to build-lib!' && npm run build-lib",
|
|
52
61
|
"postpublish": "echo 'posthook for prosperity, does nothing for now!'",
|
|
53
|
-
"test:browser": "vitest
|
|
62
|
+
"test:browser": "vitest",
|
|
63
|
+
"chromatic": "node chromatic-runner.cjs"
|
|
54
64
|
},
|
|
55
65
|
"wireit": {
|
|
56
66
|
"build": {
|
|
@@ -90,7 +100,9 @@
|
|
|
90
100
|
"@vitest/browser": "^2.0.5",
|
|
91
101
|
"@wdio/cli": "^9.0.7",
|
|
92
102
|
"autoprefixer": "^10.4.20",
|
|
103
|
+
"chromatic": "^11.11.0",
|
|
93
104
|
"custom-element-vs-code-integration": "^1.4.1",
|
|
105
|
+
"dotenv": "^16.4.5",
|
|
94
106
|
"eslint": "^8.57.0",
|
|
95
107
|
"eslint-plugin-import": "^2.29.1",
|
|
96
108
|
"eslint-plugin-lit": "^1.14.0",
|
|
@@ -121,5 +133,9 @@
|
|
|
121
133
|
"optionalDependencies": {
|
|
122
134
|
"@rollup/rollup-linux-x64-gnu": "^4.21.0"
|
|
123
135
|
},
|
|
124
|
-
"customElements": "custom-elements.json"
|
|
136
|
+
"customElements": "custom-elements.json",
|
|
137
|
+
"bugs": {
|
|
138
|
+
"url": "https://github.com/Citolab/qti-components/issues"
|
|
139
|
+
},
|
|
140
|
+
"homepage": "https://github.com/Citolab/qti-components#readme"
|
|
125
141
|
}
|