forked from Wave-Play/robo.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "robo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/create-robo",
"packages/plugin-ai",
"packages/plugin-api",
"packages/plugin-gpt",
"packages/plugin-maintenance",
"packages/plugin-poll",
"packages/robo"
]
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "pnpm lint:eslint && pnpm lint:style",
"lint:eslint": "eslint . --ext js,jsx,ts,tsx --max-warnings=0",
"lint:style": "prettier --write .",
"publish:canary": "pnpm lint && turbo run build --filter=@roboplay/robo.js && turbo run build && changeset publish --tag canary",
"publish:next": "pnpm lint && turbo run build --filter=@roboplay/robo.js && turbo run build && changeset publish --tag next",
"publish:release": "pnpm lint && turbo run build --filter=@roboplay/robo.js && turbo run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/wave-play/robo.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"author": "WavePlay <[email protected]> (waveplay.com)",
"contributors": [
"Pkmmte Xeleon <[email protected]>"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"eslint": "8.36.0",
"prettier": "2.8.5",
"turbo": "1.8.4",
"typescript": "5.0.2"
},
"dependencies": {
"@changesets/cli": "2.26.0"
}
}