@sentinel-it/meowmeow-sdk 1.0.0-rc.b28bb80

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 ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@sentinel-it/meowmeow-sdk",
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "version": "1.0.0-rc.b28bb80",
7
+ "description": "MeowMeow 可嵌入式群組聊天室 JavaScript / TypeScript SDK",
8
+ "type": "module",
9
+ "main": "./dist/meowmeow-sdk.js",
10
+ "module": "./dist/meowmeow-sdk.esm.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/meowmeow-sdk.esm.js",
16
+ "default": "./dist/meowmeow-sdk.js"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "dependencies": {
23
+ "@emoji-mart/data": "^1.2.1",
24
+ "@google-cloud/local-auth": "^3.0.1",
25
+ "emoji-mart": "^5.6.0",
26
+ "google-auth-library": "^10.6.2",
27
+ "googleapis": "^171.4.0",
28
+ "lodash-es": "^4.18.1",
29
+ "marked": "^18.0.2",
30
+ "mobx": "^6.13.0",
31
+ "mobx-vue-lite": "^0.4.3",
32
+ "query-string": "^9.3.1",
33
+ "type-fest": "^5.6.0",
34
+ "vue": "^3.4.0"
35
+ },
36
+ "devDependencies": {
37
+ "@eslint/js": "^10.0.1",
38
+ "@iconify-json/mdi": "^1.2.3",
39
+ "@semantic-release/changelog": "^6.0.3",
40
+ "@semantic-release/git": "^10.0.1",
41
+ "@semantic-release/gitlab": "^13.0.3",
42
+ "@types/lodash-es": "^4.17.12",
43
+ "@types/node": "^25.6.0",
44
+ "@vitejs/plugin-vue": "^5.2.0",
45
+ "cross-env": "^10.1.0",
46
+ "eslint": "^10.2.0",
47
+ "eslint-plugin-vue": "^10.8.0",
48
+ "globals": "^17.4.0",
49
+ "postcss-html": "^1.8.1",
50
+ "sass": "^1.99.0",
51
+ "semantic-release": "^24.2.3",
52
+ "stylelint": "^17.7.0",
53
+ "stylelint-config-html": "^1.1.0",
54
+ "stylelint-config-standard-scss": "^17.0.0",
55
+ "tsx": "^4.21.0",
56
+ "typedoc": "^0.28.19",
57
+ "typedoc-plugin-markdown": "^4.11.0",
58
+ "typescript": "^5.7.0",
59
+ "typescript-eslint": "^8.58.1",
60
+ "unplugin-icons": "^23.0.1",
61
+ "vite": "^6.0.0",
62
+ "vite-plugin-dts": "^4.3.0",
63
+ "vitepress": "^1.6.4",
64
+ "vue": "^3.5.0",
65
+ "vue-eslint-parser": "^10.4.0",
66
+ "vue-tsc": "^2.2.0"
67
+ },
68
+ "scripts": {
69
+ "i18n 翻譯同步": "tsx ./tools/i18n-google-sheet-sync/index.ts",
70
+ "Slack 詢問部署": "tsx ./tools/slack-ask-to-deploy/index.ts",
71
+ "Slack 刪除訊息": "tsx ./tools/slack-delete-recent-message/index.ts",
72
+ "dev:store": "vite --config vite.store-playground.config.ts",
73
+ "dev:playground": "vite --config vite.playground.config.ts",
74
+ "prepare:doc-site": "pnpm run build:api-docs && tsx scripts/prepare-docs.ts",
75
+ "dev:doc-site": "pnpm vitepress dev docs-site",
76
+ "build:lib": "vite build",
77
+ "build:playground": "pnpm run build:lib && vite build --config vite.playground.config.ts",
78
+ "build:demo": "pnpm run build:lib && vite build --config vite.demo.config.ts",
79
+ "build:api-docs": "typedoc --options typedoc.md.json",
80
+ "build:doc-site": "pnpm vitepress build docs-site",
81
+ "preview:playground": "pnpm run build:playground && vite preview --config vite.playground.config.ts",
82
+ "preview:demo": "pnpm run build:demo && vite preview --config vite.demo.config.ts",
83
+ "preview:doc-site": "pnpm run build:doc-site && pnpm vitepress preview docs-site",
84
+ "typecheck": "vue-tsc --noEmit",
85
+ "lint:style": "stylelint \"src/**/*.{scss,vue}\"",
86
+ "release": "semantic-release"
87
+ }
88
+ }