-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.47 KB
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
{
"name": "playbook-vscode",
"displayName": "Playbook UI Helper",
"description": "Developer experience enhancements for Playbook UI design system - snippets, autocomplete, and hover documentation for Rails and React",
"version": "2.0.0",
"publisher": "ClancyTools",
"icon": "enhanced_logo.png",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Snippets",
"Programming Languages",
"Linters",
"Formatters"
],
"keywords": [
"playbook",
"design system",
"rails",
"react",
"snippets",
"autocomplete",
"intellisense",
"erb",
"jsx",
"tsx",
"ui components",
"powerhome"
],
"activationEvents": [
"onLanguage:ruby",
"onLanguage:erb",
"onLanguage:html.erb",
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"main": "./out/extension.js",
"contributes": {
"snippets": [
{
"language": "ruby",
"path": "./snippets/rails.json"
},
{
"language": "erb",
"path": "./snippets/rails.json"
},
{
"language": "html.erb",
"path": "./snippets/rails.json"
},
{
"language": "html",
"path": "./snippets/rails.json"
},
{
"language": "javascriptreact",
"path": "./snippets/react.json"
},
{
"language": "typescriptreact",
"path": "./snippets/react.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^18.x",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"@vscode/test-electron": "^2.5.2",
"eslint": "^8.x",
"glob": "^8.1.0",
"mocha": "^10.8.2",
"ts-node": "^10.x",
"typescript": "^5.x"
},
"repository": {
"type": "git",
"url": "https://github.com/ClancyTools/playbook_vscode_extension"
},
"bugs": {
"url": "https://github.com/ClancyTools/playbook_vscode_extension/issues"
},
"homepage": "https://github.com/ClancyTools/playbook_vscode_extension#readme",
"license": "MIT",
"galleryBanner": {
"color": "#1C1C1C",
"theme": "dark"
}
}