-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 762 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 762 Bytes
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
{
"name": "astrbot-plugins-monorepo",
"version": "1.0.0",
"description": "Monorepo for AstrBot plugins maintained by MinaraAgent",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"update:all": "node scripts/update-all-plugins.js",
"lint": "eslint packages/**/*.js",
"format": "prettier --write \"**/*.{js,md,json}\"",
"check-deps": "node scripts/check-dependencies.js",
"release": "node scripts/release.js"
},
"devDependencies": {
"prettier": "^3.0.0",
"eslint": "^8.0.0"
},
"engines": {
"node": ">=18.0.0",
"python": ">=3.10"
},
"repository": {
"type": "git",
"url": "https://github.com/MinaraAgent/astrbot-plugins.git"
},
"author": "MinaraAgent",
"license": "MIT"
}