-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.85 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
{
"name": "swift-playgrounds",
"displayName": "Swift Playgrounds",
"description": "Allows opening and running of Swift playground bundles.",
"publisher": "pieterjongsma",
"version": "0.1.1",
"icon": "media/icon.png",
"preview": true,
"license": "GPL-3.0",
"repository": {
"type": "github",
"url": "https://github.com/pieterjongsma/swift-playgrounds-vscode"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Debuggers",
"Other"
],
"activationEvents": [
"workspaceContains:**/*.playground/Contents.swift",
"onCommand:swiftplayground.start"
],
"main": "./build/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Swift Playground configuration",
"properties": {
"swift-playgrounds.truncationLength": {
"type": "number",
"default": 30,
"description": "Maximum length of logged variable values. Longer values will be summarized when possible, or truncated."
}
}
},
"commands": [
{
"command": "swiftplayground.start",
"title": "Swift Playground: Run",
"group": "navigation",
"icon": {
"light": "./media/toolbar_icon_light.svg",
"dark": "./media/toolbar_icon_dark.svg"
}
},
{
"command": "swiftplayground.copy.manifest",
"title": "Swift Playground: Add Package.swift manifest"
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == swift",
"command": "swiftplayground.start",
"group": "navigation"
}
]
},
"languages": [
{
"id": "swift-playground",
"extensions": [
".playground"
],
"aliases": [
"Swift Playground",
"playground"
]
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test_playgrounds": "npm run webpack && node ./build/test_playgrounds.js test src/test/playgrounds/examples/**/*.playground"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/crypto-js": "^3.1.43",
"@types/glob": "7.1.1",
"@types/mathjs": "^5.0.1",
"@types/mocha": "2.2.48",
"@types/node": "^10.12.21",
"@types/rimraf": "2.0.2",
"@types/stream-buffers": "3.0.3",
"chai": "4.2.0",
"chalk": "2.4.2",
"copy-webpack-plugin": "5.0.3",
"file-loader": "^3.0.1",
"glob": "7.1.4",
"mocha": "6.1.4",
"mocha-webpack": "1.1.0",
"ts-loader": "^5.3.3",
"ts-node": "8.3.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"commander": "^2.20.0",
"crypto-js": "^3.1.9-1",
"mathjs": "^5.9.0",
"ndjson": "1.5.0",
"preact": "^8.4.2",
"preact-compat": "^3.18.5",
"rimraf": "2.6.3",
"stream-buffers": "3.0.2"
}
}