forked from botpress/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "@botpress/studio",
"version": "0.0.24",
"description": "Create your virtual assistants",
"main": "index.js",
"bin": "./packages/studio-be/out/index.js",
"repository": "https://github.com/botpress/studio.git",
"author": "Botpress, Inc.",
"license": "AGPL-3.0",
"private": true,
"pkg": {
"scripts": [
"./packages/studio-be/out/**/*.js"
],
"assets": [
"./node_modules/@botpress/native-extensions/bin/**/*",
"./node_modules/vm2/lib/*.js",
"./node_modules/xml-encryption/lib/templates/*.tpl.xml",
"./packages/studio-be/out/ui/**"
],
"targets": [
"node12-win32-x64",
"node12-linux-x64",
"node12-macos-x64"
],
"outputPath": "./bin"
},
"scripts": {
"cmd": "yarn run gulp",
"build": "yarn cmd build",
"package": "yarn cmd package:studio",
"watch": "yarn cmd watch:studio",
"start": "yarn cmd start:studio",
"release": "node ./scripts/utils/release",
"prettier": "cross-env prettier --check './packages/**/*.ts'",
"eslint": "cross-env eslint packages/ --ext .ts,.tsx"
},
"devDependencies": {
"@types/node": "^12.13.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"conventional-changelog": "^3.1.24",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.6.1",
"fs-extra": "^10.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-file": "^0.4.0",
"gulp-rimraf": "^1.0.0",
"pkg": "^4.3.7",
"prettier": "^1.19.1",
"semver": "^7.3.5",
"typescript": "^4.2.4"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"fstream": ">=1.0.12",
"lodash": ">=4.17.21"
},
"dependencies": {}
}