-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.23 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@cs-magic/acp",
"publisher": "cs-magic",
"displayName": "Awesome Coding Prompt",
"description": "A VS Code extension for managing and using coding prompts",
"version": "0.0.1",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "acp.quickPick",
"title": "Awesome Coding Prompts: Quick Pick",
"icon": "$(search)"
},
{
"command": "acp.recentPrompt",
"title": "Awesome Coding Prompts: Recent Prompts",
"icon": "$(history)"
},
{
"command": "acp.popularTags",
"title": "Awesome Coding Prompts: Popular Tags",
"icon": "$(tag)"
},
{
"command": "acp.createPrompt",
"title": "Awesome Coding Prompts: Create Custom Prompt",
"icon": "$(edit)"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "webpack",
"watch": "webpack --watch",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.9",
"@types/node-fetch": "^2.6.1",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vscode/test-electron": "^2.4.1",
"css-loader": "^7.1.2",
"eslint": "^8.54.0",
"glob": "7.2.3",
"mocha": "^11.0.1",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.0",
"vite": "^6.0.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@iarna/toml": "^2.2.5",
"@vscode/codicons": "^0.0.36",
"jotai": "^2.10.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.0",
"vscode-codicons": "^0.0.17",
"zod": "^3.24.0"
}
}