@collabchron/notiq 1.0.7 → 1.1.0
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 +20 -2
- package/dist/{ExcalidrawComponent-4WAI5JRK.mjs → ExcalidrawComponent-LUZJNFWV.mjs} +2 -2
- package/dist/{ExcalidrawPlugin-QLZEQFV6.mjs → ExcalidrawPlugin-HC2L43YG.mjs} +3 -3
- package/dist/{FloatingTextFormatToolbarPlugin-V5QPQUKU.mjs → FloatingTextFormatToolbarPlugin-ENECEZSX.mjs} +2 -2
- package/dist/{SlashCommand-ZSIZP5NN.mjs → SlashCommand-FHEWHFZU.mjs} +2 -2
- package/dist/{ToolbarPlugin-3J4KBHLU.mjs → ToolbarPlugin-2VP7FDWD.mjs} +4 -4
- package/dist/{chunk-2HRNVYE4.mjs → chunk-4GFXER7R.mjs} +2 -2
- package/dist/{chunk-CG4BHAVO.mjs → chunk-HJPPNHYM.mjs} +1 -1
- package/dist/{chunk-SC23DVLK.mjs → chunk-NOJDE3CE.mjs} +1 -1
- package/dist/{chunk-ACER22EH.mjs → chunk-NZXC6FGU.mjs} +1 -1
- package/dist/{chunk-TNOYW3SX.mjs → chunk-RBWZGXPF.mjs} +2 -2
- package/dist/{chunk-NWK2NBE6.mjs → chunk-V2NIZOSQ.mjs} +1 -1
- package/dist/{chunk-PEYOQP5W.mjs → chunk-WAK5JGNJ.mjs} +1 -1
- package/dist/index.js +47 -49
- package/dist/index.mjs +11 -14
- package/dist/{insert-node-6UDWGJ73.mjs → insert-node-WXW4ZER4.mjs} +3 -3
- package/dist/{stepper-IV5MYBK2.mjs → stepper-JDEE26TX.mjs} +5 -5
- package/dist/styles/notiq.css +1 -1
- package/package.json +13 -10
- package/src/styles/notiq.css +253 -346
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@collabchron/notiq",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -56,6 +56,18 @@
|
|
|
56
56
|
"bugs": {
|
|
57
57
|
"url": "https://github.com/chinonsochikelue/notiq/issues"
|
|
58
58
|
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"dev": "next dev --turbopack",
|
|
61
|
+
"build": "pnpm install --no-frozen-lockfile && next build",
|
|
62
|
+
"build:lib": "tsup && pnpm build:css",
|
|
63
|
+
"build:css": "tailwindcss -i src/styles/notiq.css -o dist/styles/notiq.css --minify && pwsh -Command \"Copy-Item -Path node_modules/katex/dist/fonts -Destination dist/styles -Recurse -Force\"",
|
|
64
|
+
"start": "next start",
|
|
65
|
+
"lint": "next lint",
|
|
66
|
+
"lint:css": "node scripts/check-css-layers.js",
|
|
67
|
+
"test": "vitest --run",
|
|
68
|
+
"test:dev": "vitest",
|
|
69
|
+
"prepare": "husky"
|
|
70
|
+
},
|
|
59
71
|
"dependencies": {
|
|
60
72
|
"@ai-sdk/google": "^3.0.7",
|
|
61
73
|
"@ai-sdk/groq": "^3.0.7",
|
|
@@ -193,14 +205,5 @@
|
|
|
193
205
|
"tsup": "^8.5.1",
|
|
194
206
|
"typescript": "^5.9.2",
|
|
195
207
|
"vitest": "^4.0.17"
|
|
196
|
-
},
|
|
197
|
-
"scripts": {
|
|
198
|
-
"dev": "next dev --turbopack",
|
|
199
|
-
"build": "pnpm install --no-frozen-lockfile && next build",
|
|
200
|
-
"build:lib": "tsup && pnpm build:css",
|
|
201
|
-
"build:css": "tailwindcss -i src/styles/notiq.css -o dist/styles/notiq.css --minify && pwsh -Command \"Copy-Item -Path node_modules/katex/dist/fonts -Destination dist/styles -Recurse -Force\"",
|
|
202
|
-
"start": "next start",
|
|
203
|
-
"lint": "next lint",
|
|
204
|
-
"test": "vitest"
|
|
205
208
|
}
|
|
206
209
|
}
|