-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "vscode-tweet-code",
"displayName": "Tweet Code",
"description": "Share code snippets to X/Twitter directly from VS Code",
"version": "1.0.0",
"publisher": "DK4TZ",
"repository": {
"type": "git",
"url": "https://github.com/dk4tz/tweet-code"
},
"license": "MIT",
"engines": {
"vscode": "^1.80.0",
"node": ">=18"
},
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "tweet-code.share",
"title": "Tweet Selection"
}
],
"menus": {
"editor/context": [
{
"command": "tweet-code.share",
"when": "editorHasSelection",
"group": "9_cutcopypaste"
}
]
}
},
"scripts": {
"clean": "rm -rf dist",
"dev": "bun run clean && NODE_OPTIONS='--no-inspect' bun --watch run ./build.ts ",
"build": "bun run clean && NODE_OPTIONS='--no-inspect' bun run ./build.ts",
"package": "vsce package"
},
"dependencies": {
"axios": "^1.7.9",
"oauth-1.0a": "^2.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/vscode": "^1.80.0",
"@types/vscode-webview": "^1.57.5",
"@vscode/vsce": "^2.15.0",
"bun-types": "latest",
"tailwindcss": "^3.4.0"
}
}