-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.02 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "webStarter",
"displayName": "Web Animations",
"publisher": "webStarter",
"author": {
"name": "Himanshu Jain"
},
"license": {
"url": "https://gitlab.oit.duke.edu/hkj4/vscodeextension-webanimations/-/blob/master/LICENSE"
},
"repository": {
"url": "https://gitlab.oit.duke.edu/hkj4/vscodeextension-webanimations"
},
"description": "Creates basic code for fun animations and design files ",
"version": "0.2.2",
"icon": "icon.png",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Other"
],
"activationEvents": [
"webStarter.createType",
"onCommand:webStarter.createTypeParticles",
"onCommand:webStarter.createParticles",
"onCommand:webStarter.createAnime",
"onCommand:webStarter.createGlobal",
"onCommand:webStarter.getTextAnim",
"onCommand:webStarter.ballAnimation",
"onCommand:webStarter.getCube",
"onCommand:webStarter.getBox",
"onCommand:webStarter.getCar",
"onCommand:webStarter.createRocket",
"onCommand:webStarter.getScroll",
"onCommand:webStarter.getMoBoxes",
"onCommand:webStarter.getMoMusic"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "webStarter.createAnime",
"title": "Create Anime"
},
{
"command": "webStarter.getMoMusic",
"title": "Create Mo Radio"
},
{
"command": "webStarter.getMoBoxes",
"title": "Get Motion Anim"
},
{
"command": "webStarter.getScroll",
"title": "Create Scroll Reveal"
},
{
"command": "webStarter.createTypeParticles",
"title": "Create TypeParticles"
},
{
"command": "webStarter.createRocket",
"title": "Create Rocket"
},
{
"command": "webStarter.createType",
"title": "Create Type"
},
{
"command": "webStarter.createParticles",
"title": "Create Particles"
},
{
"command": "webStarter.createGlobal",
"title": "Create Global Styling"
},
{
"command": "webStarter.getCar",
"title": "Create Car Blueprint"
},
{
"command": "webStarter.getTextAnim",
"title": "Create Text Animations"
},
{
"command": "webStarter.getBox",
"title": "Create Moving Box"
},
{
"command": "webStarter.ballAnimation",
"title": "Get Ball Animation"
},
{
"command": "webStarter.getCube",
"title": "Get Cube Animation"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.43.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.1.1",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
},
"dependencies": {
"axios": "^0.21.1",
"extfs": "0.0.7",
"fetch": "^1.1.0",
"node-fetch": "^2.6.1"
}
}