-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (83 loc) · 1.9 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
{
"name": "tacky-the-thumbtack",
"displayName": "Tacky The Thumbtack",
"description": "Tacky the Thumbtack is the world's worst VS Code Extension buddy to ever grace your IDE. It's here to cause problems and challenge you to be a 'better' programmer.",
"version": "1.0.0",
"publisher": "FrogRats-Ntu",
"repository": "https://github.com/FrogRats/Tacky-the-Thumbtack",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:tacky-the-thumbtack.awakenTacky",
"onCommand: tacky-the-thumbtack.changeTheme"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "thumbtack",
"properties": {
"thumbtack.TwilioSID": {
"type": "string",
"default": "NA",
"description": "SID for twilio"
},
"thumbtack.TwilioAUTH": {
"type": "string",
"default": "NA",
"description": "AUTH for twilio"
},
"thumbtack.TwilioNumber": {
"type": "string",
"default": "+447700169666",
"description": "Number for twilio"
}
}
},
"commands": [
{
"command": "tacky-the-thumbtack.awakenTacky",
"title": "Awaken Tacky"
},
{
"command": "tacky-the-thumbtack.changeTheme",
"title": "Change Theme"
},
{
"command": "tacky-the-thumbtack.helpme",
"title": "Help Me"
},
{
"command": "tacky-the-thumbtack.addnumber",
"title": "Add Number"
},
{
"command": "tacky-the-thumbtack.chaosMode",
"title": "Chaos Mode"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.64.0",
"@vscode/test-electron": "^2.0.3",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"moment": "^2.29.2",
"twilio": "^3.74.0"
}
}