-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "vibecode",
"displayName": "VibeCode",
"description": "Spice up your VSCode typing with cool text pop animations and typewriter sounds!",
"publisher": "Onaga08",
"icon": "asset/icon.png",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/Onaga08/VibeCode"
},
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:vibecode.toggleOn"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vibecode.toggleOn",
"title": "VibeCode: Toggle On"
}
],
"configuration": {
"type": "object",
"title": "VibeCode Settings",
"properties": {
"vibecode.on": {
"type": "boolean",
"default": true,
"description": "Enable or disable VibeCode extension."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint 'src/**/*.ts'",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^18.18.6",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vscode/test-electron": "^2.5.2",
"eslint": "^8.57.1",
"glob": "^10.4.5",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}