-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.1 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
{
"name": "prompt-pack",
"version": "1.0.1",
"description": "Useful chat prompts for interacting with brains",
"main": "./src/index.js",
"author": "test",
"license": "MIT",
"icon": "public/icon.png",
"engines": {
"hubai": ">= 0.1.0-alpha.13 || 1.x"
},
"dependencies": {
"@hubai/core": "^0.0.21",
"monaco-editor": "^0.31.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"start": "hubai extension start-dev-server",
"build": "webpack --progress --config configs/webpack.prod.js",
"serve": "webpack serve --config configs/webpack.dev.js",
"dev": "npm-run-all --parallel start serve",
"tscheck": "tsc",
"package": "hubai extension package"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.4",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"babel-loader": "9.1.2",
"css-loader": "^6.8.1",
"html-webpack-plugin": "5.5.0",
"regenerator-runtime": "0.13.11",
"style-loader": "^3.3.3",
"ts-loader": "9.4.2",
"typescript": "4.9.5",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
},
"publisher": "hubai",
"keywords": [
"Prompt",
"Pack",
"act"
],
"categories": [
"Other"
],
"extension": {
"name": "PromptPack",
"displayName": "GPT Prompt Pack",
"description": "Thousand of prompts for interacting with chat gpt",
"extensionKind": [
"workbench"
],
"contributes": {
"chat": {
"commands": {
"act": [
{
"path": "./src/chatCommands/act.json",
"language": "en"
}
]
}
}
}
}
}