This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
81 lines (81 loc) · 1.78 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
{
"name": "aesop",
"displayName": "Aesop",
"description": "An IDE-native suite for previewing Storybook.",
"version": "0.1.0",
"publisher": "async-aesop",
"repository": "https://github.com/storybookjs/vs-code-plugin",
"icon": "resources/Aesop128x128.png",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.aesopAwaken",
"workspaceContains:**/node_modules/@storybook/core/*.json"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "extension.aesopAwaken",
"title": "Aesop Awaken"
}
],
"configuration": {
"type": "object",
"title": "Configuration",
"properties": {
"aesop.port": {
"type": "number",
"default": 8509,
"description": "Port number"
},
"aesop.host": {
"type": "string",
"default": "localhost",
"description": "Host address"
}
}
},
"keybindings": [
{
"command": "extension.aesopAwaken",
"key": "ctrl+k a",
"mac": "cmd+k a"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.21",
"@types/vscode": "^1.41.0",
"glob": "^7.1.5",
"mocha": "^10.2.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vscode-test": "^1.2.2",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"npm": "^6.14.6",
"ps-node": "^0.1.6",
"vsce": "^1.71.0"
}
}