-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.95 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "koishi-plugin-blockly",
"description": "Use blockly to develop a simple koishi plugin",
"version": "0.6.3",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/koishijs/koishi-plugin-blockly.git"
},
"homepage": "https://blockly.koishi.chat",
"files": [
"lib",
"dist",
"media"
],
"license": "AGPL-3.0",
"scripts": {
"docs:dev": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "yakumo mocha -r esbuild-register -r yml-register --exit"
},
"keywords": [
"chatbot",
"koishi",
"plugin",
"blockly",
"lowcode",
"program",
"develop",
"flowgraph",
"dataflow",
"visualization"
],
"koishi": {
"browser": true,
"public": [
"dist"
],
"description": {
"en": "Use blockly to develop a simple koishi plugin",
"zh": "Blockly 可视化编程插件"
}
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.7.7",
"koishi": "^4.12.8"
},
"devDependencies": {
"@baklavajs/themes": "^2.0.1-next.0",
"@highlightjs/vue-plugin": "^2.1.2",
"@koishijs/client": "^5.7.6",
"@koishijs/plugin-console": "^5.7.6",
"@koishijs/vitepress": "^1.9.5",
"@mit-app-inventor/blockly-block-lexical-variables": "^0.0.13",
"@types/node": "^18.16.8",
"@types/pako": "^2.0.0",
"@types/semver": "^7.5.0",
"@types/uuid": "^9.0.1",
"baklavajs": "2.0.2-beta.3",
"blockly": "9.2.1",
"chai": "^4.3.7",
"element-plus": "^2.3.4",
"highlight.js": "^11.8.0",
"koishi": "^4.11.6",
"mocha": "^10.2.0",
"pako": "^2.1.0",
"sass": "^1.62.1",
"semver": "^7.5.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"vitepress": "1.0.0-alpha.26",
"xterm": "^5.1.0",
"yakumo-mocha": "^0.3.1"
},
"dependencies": {
"jsonpath-plus": "^7.2.0",
"uuid": "^9.0.0"
}
}