vscode-scxml-preview 0.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/icon.png ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "vscode-scxml-preview",
3
+ "version": "0.0.31",
4
+ "publisher": "JacobeanResearchandDevelopmentLLC",
5
+ "engines": {
6
+ "vscode": "^1.47.0"
7
+ },
8
+ "homepage": "https://scion.scxml.io",
9
+ "license": "SEE LICENSE IN LICENSE",
10
+ "displayName": "SCXML Preview",
11
+ "description": "Preview SCXML files.",
12
+ "categories": [
13
+ "Languages"
14
+ ],
15
+ "keywords": [
16
+ "scion",
17
+ "scxml",
18
+ "preview"
19
+ ],
20
+ "main": "./out/src/extension",
21
+ "contributes": {
22
+ "commands": [
23
+ {
24
+ "command": "scxml.showPreview",
25
+ "title": "Show Preview",
26
+ "category": "SCXML"
27
+ }
28
+ ]
29
+ },
30
+ "activationEvents": [
31
+ "onCommand:scxml.showPreview"
32
+ ],
33
+ "devDependencies": {
34
+ "@scion-scxml/schviz": "^3.2.28",
35
+ "@scion-scxml/scxml": "^4.3.28",
36
+ "@types/node": "^12.12.0",
37
+ "@types/socket.io-client": "^1.4.32",
38
+ "@types/vscode": "^1.47.0",
39
+ "@typescript-eslint/eslint-plugin": "^4.16.0",
40
+ "@typescript-eslint/parser": "^4.16.0",
41
+ "eslint": "^7.21.0",
42
+ "socket.io-client": "^2.0.4",
43
+ "tslint-language-service": "^0.9.6",
44
+ "typescript": "^4.2.2"
45
+ },
46
+ "scripts": {
47
+ "copy-deps": "cp node_modules/babel-polyfill/dist/polyfill.js browser/ && cp node_modules/react/dist/react.js browser/ && cp node_modules/react-dom/dist/react-dom.js browser/ && cp node_modules/@scion-scxml/scxml/dist/scxml.js browser/ && cp node_modules/@scion-scxml/schviz/dist/schviz.js browser/",
48
+ "vscode:prepublish": "tsc -p ./ && npm run copy-deps",
49
+ "watch": "tsc -watch -p ./",
50
+ "compile": "npm run vscode:prepublish",
51
+ "build": "npm run compile",
52
+ "test": "node ./node_modules/vscode/bin/test"
53
+ },
54
+ "icon": "icon.png",
55
+ "repository": {
56
+ "type": "git",
57
+ "url": "https://gitlab.com/scion-scxml/vscode-preview"
58
+ },
59
+ "dependencies": {
60
+ "babel-polyfill": "^6.26.0",
61
+ "cors": "^2.8.4",
62
+ "express": "^4.16.2",
63
+ "q": "^1.5.1",
64
+ "react": "^15.6.1",
65
+ "react-dom": "^15.6.1",
66
+ "socket.io": "^2.0.4"
67
+ },
68
+ "galleryBanner": {
69
+ "color": "#f78a30",
70
+ "theme": "dark"
71
+ },
72
+ "gitHead": "ce920c0df2cbf1e96b0ebafa658c1019c43f81d7"
73
+ }
package/screenshot.gif ADDED
Binary file
package/tsconfig.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ "module": "commonjs",
4
+ "target": "es2017",
5
+ "outDir": "out",
6
+ "lib": [
7
+ "es2017"
8
+ ],
9
+ "sourceMap": true,
10
+ "rootDir": ".",
11
+ "noUnusedLocals": true,
12
+ "noUnusedParameters": true,
13
+ "plugins": [
14
+ {
15
+ "name": "tslint-language-service"
16
+ }
17
+ ]
18
+ },
19
+ "exclude": [
20
+ "node_modules",
21
+ ".vscode-test"
22
+ ]
23
+ }
package/tslint.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "tslint:latest",
3
+ "exclude": [
4
+ "node_modules"
5
+ ],
6
+ "rules": {
7
+ "one-line": false,
8
+ "trailing-comma": "never"
9
+ }
10
+ }