-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.52 KB
/
package.json
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
{
"name": "speedybot",
"version": "2.0.6",
"main": "dist/cjs/src/index.js",
"module": "dist/mjs/src/index.js",
"types": "dist/mjs/src/index.d.ts",
"homepage": "https://speedybot.js.org",
"bin": {
"speedybot": "./bin/cli.js"
},
"files": [
"dist/cjs",
"dist/mjs"
],
"exports": {
".": {
"import": "./dist/mjs/src/index.js",
"require": "./dist/cjs/src/index.js"
}
},
"devDependencies": {
"@rollup/rollup-linux-x64-gnu": "latest",
"@types/node": "^18.8.4",
"@vitest/coverage-v8": "^0.32.2",
"@vitest/ui": "^0.32.2",
"adaptivecards": "2.11.1",
"element-plus": "^2.3.10",
"monaco-editor": "^0.41.0",
"tsx": "^3.10.1",
"typedoc": "^0.22.18",
"typedoc-plugin-markdown": "3.12.1",
"typedoc-theme-hierarchy": "1.2.1",
"typescript": "^4.7.2",
"vite": "^4.3.9",
"vitepress": "^1.2.0",
"vitest": "^0.32.2"
},
"scripts": {
"dist:example": "tee examples/worker/settings/bot.ts examples/i18n/settings/bot.ts < examples/bot.sample.ts >/dev/null",
"build:hybrid": "rm -fr dist/* && tsc -p ./build_tricks/tsconfig-esm.json && tsc -p ./build_tricks/tsconfig-cjs.json && sh ./build_tricks/patch_dist.sh",
"install:all": "npm i && cd docs && npm i",
"build": "npm run test:nowatch && tsc && npm run api-docs && npm run docs:build",
"api-docs": "npm run docs",
"docs": "rm -rf docs/api-docs 2>/dev/null && npx --yes typedoc --media docs/assets --plugin typedoc-plugin-markdown --out docs/api-docs src/docs.ts",
"publish:beta-hybrid": "npm run build:hybrid && npm publish --tag beta",
"publish:beta": "npm run build && npm publish --tag beta",
"save": "git add . &2.0.0-beta.& git commit -m \"checkpt\" && git push draft deploy",
"test": "vitest --reporter verbose",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:coverage:ui": "npm run test:coverage && cd coverage && npx serve -p 8001",
"test:nowatch": "vitest run",
"docs:dev": "vitepress dev docs --host",
"docs:build": "vitepress build docs",
"docs:copy": "ts-node build_tricks/copy_rewrite.ts",
"docs:preview": "vitepress preview docs",
"docs:localbuild": "npm run docs:build && cd docs/.vitepress/dist && npx serve -p 1337"
},
"engines": {
"node": ">=18.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/valgaze/speedybot.git"
},
"keywords": [
"bot",
"speedy",
"continerless",
"speedybot",
"serverless"
],
"author": "[email protected]",
"license": "MIT"
}