@sentinel-it/meowmeow-sdk 0.1.0-rc.7f74b8d

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,105 @@
1
+ {
2
+ "name": "@sentinel-it/meowmeow-sdk",
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "version": "0.1.0-rc.7f74b8d",
7
+ "license": "MIT",
8
+ "description": "MeowMeow 可嵌入式群組聊天室 JavaScript / TypeScript SDK",
9
+ "type": "module",
10
+ "main": "./dist/meowmeow-sdk.js",
11
+ "module": "./dist/meowmeow-sdk.esm.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/meowmeow-sdk.esm.js",
17
+ "default": "./dist/meowmeow-sdk.js"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "dependencies": {
24
+ "@emoji-mart/data": "^1.2.1",
25
+ "@google-cloud/local-auth": "^3.0.1",
26
+ "emoji-mart": "^5.6.0",
27
+ "google-auth-library": "^10.6.2",
28
+ "googleapis": "^171.4.0",
29
+ "lodash-es": "^4.18.1",
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
+ "browserslist": [
37
+ "> 1%",
38
+ "last 2 versions",
39
+ "not dead"
40
+ ],
41
+ "devDependencies": {
42
+ "@eslint/js": "^10.0.1",
43
+ "@iconify-json/mdi": "^1.2.3",
44
+ "@inquirer/prompts": "^8.4.3",
45
+ "@semantic-release/changelog": "^6.0.3",
46
+ "@semantic-release/git": "^10.0.1",
47
+ "@semantic-release/gitlab": "^13.0.3",
48
+ "@types/lodash-es": "^4.17.12",
49
+ "@types/node": "^25.6.0",
50
+ "@vitejs/plugin-vue": "^5.2.0",
51
+ "autoprefixer": "^10.5.0",
52
+ "eslint": "^10.2.0",
53
+ "eslint-plugin-vue": "^10.8.0",
54
+ "globals": "^17.4.0",
55
+ "ora": "^9.4.0",
56
+ "postcss": "^8.5.14",
57
+ "postcss-html": "^1.8.1",
58
+ "rollup-plugin-visualizer": "^7.0.1",
59
+ "sass": "^1.99.0",
60
+ "semantic-release": "^24.2.3",
61
+ "stylelint": "^17.7.0",
62
+ "stylelint-config-html": "^1.1.0",
63
+ "stylelint-config-standard-scss": "^17.0.0",
64
+ "tsx": "^4.21.0",
65
+ "typedoc": "^0.28.19",
66
+ "typedoc-plugin-markdown": "^4.11.0",
67
+ "typescript": "^5.7.0",
68
+ "typescript-eslint": "^8.58.1",
69
+ "unplugin-icons": "^23.0.1",
70
+ "vite": "^6.0.0",
71
+ "vite-plugin-dts": "^4.3.0",
72
+ "vitepress": "^1.6.4",
73
+ "vue": "^3.5.0",
74
+ "vue-eslint-parser": "^10.4.0",
75
+ "vue-tsc": "^2.2.0"
76
+ },
77
+ "engines": {
78
+ "node": ">=20",
79
+ "pnpm": "10.12.4"
80
+ },
81
+ "scripts": {
82
+ "i18n 翻譯同步": "tsx ./tools/i18n-google-sheet-sync/index.ts",
83
+ "Slack 詢問部署": "tsx ./tools/slack-ask-to-deploy/index.ts",
84
+ "Slack 公告進版": "tsx ./tools/slack-send-release-message/index.ts",
85
+ "Slack 刪除訊息": "tsx ./tools/slack-delete-recent-message/index.ts",
86
+ "Git 分支同步": "tsx ./tools/git-branches-sync/index.ts",
87
+ "dev:store": "vite --config vite.store-playground.config.ts",
88
+ "dev:playground": "vite --config vite.playground.config.ts",
89
+ "prepare:doc-site": "pnpm run build:api-docs && tsx scripts/prepare-docs.ts",
90
+ "dev:doc-site": "pnpm vitepress dev docs-site",
91
+ "build:lib": "vite build",
92
+ "build:playground": "pnpm run build:lib && vite build --config vite.playground.config.ts",
93
+ "build:demo": "pnpm run build:lib && vite build --config vite.demo.config.ts",
94
+ "build:demo:mode": "vite build --mode $MODE && vite build --config vite.demo.config.ts --mode $MODE",
95
+ "build:api-docs": "typedoc --options typedoc.md.json",
96
+ "build:doc-site": "pnpm vitepress build docs-site",
97
+ "preview:playground": "pnpm run build:playground && vite preview --config vite.playground.config.ts",
98
+ "preview:demo": "pnpm run build:demo && vite preview --config vite.demo.config.ts",
99
+ "preview:doc-site": "pnpm run build:doc-site && pnpm vitepress preview docs-site",
100
+ "analyze": "ANALYZE=true vite build",
101
+ "typecheck": "vue-tsc --noEmit",
102
+ "lint:style": "stylelint \"src/**/*.{scss,vue}\"",
103
+ "release": "semantic-release"
104
+ }
105
+ }