-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.74 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
{
"name": "vscode-loop-development-kit",
"version": "1.0.1",
"description": "Create Olive Helps loops in VSCode with aptitudes of your choice, quickly and easily.",
"displayName": "Loop Development Kit",
"publisher": "Olive-AI",
"icon": "images/oliveLogo.png",
"author": {
"name": "Olive AI, Inc."
},
"copyright": "Copyright (C) 2022 Olive AI, Inc. All rights reserved.",
"homepage": "https://github.com/open-olive/loop-creator-vscode#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-olive/loop-creator-vscode.git"
},
"bugs": {
"url": "https://github.com/open-olive/loop-creator-vscode/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:loop-development-kit.createLoop"
],
"contributes": {
"commands": [
{
"command": "loop-development-kit.createLoop",
"title": "Create Loop"
}
]
},
"engines": {
"vscode": "^1.67.2"
},
"main": "./dist/extension.js",
"browser": "./dist/web/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --config ./webpack/webpack.config.js",
"compile:main": "webpack --config ./webpack/webpack.main.config.js",
"compile:web": "webpack --config ./webpack/webpack.web.config.js",
"deploy": "vsce publish",
"watch:main": "webpack --config ./webpack/webpack.main.config.js --watch",
"watch:web": "webpack --config ./webpack/webpack.web.config.js --watch",
"package": "webpack --config ./webpack/webpack.config.js --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"@oliveai/loop-templates": "1.1.2",
"buffer": "6.0.3",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.0",
"http-browserify": "1.7.0",
"https-browserify": "1.0.0",
"path-browserify": "1.0.1",
"process": "0.11.10",
"squirrelly": "8.0.8",
"stream-http": "3.2.0",
"universal-analytics": "0.5.3",
"url": "0.11.0"
},
"devDependencies": {
"@types/glob": "7.2.0",
"@types/mocha": "9.1.1",
"@types/node": "17.0.36",
"@types/squirrelly": "7.1.2",
"@types/universal-analytics": "0.4.5",
"@types/vscode": "1.67.0",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"eslint": "8.16.0",
"glob": "8.0.3",
"mocha": "10.0.0",
"raw-loader": "4.0.2",
"ts-loader": "9.3.0",
"typescript": "4.7.2",
"vsce": "2.9.0",
"vscode": "1.1.37",
"vscode-test": "1.6.1",
"webpack": "5.72.1",
"webpack-cli": "4.9.2"
}
}