This repository was archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "cem-plugin-vs-code-custom-data-generator",
"version": "1.4.2",
"description": "A custom elements manifest analyzer plugin to generate a custom data file for VS Code.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"files": [
"index.js",
"index.d.ts",
"types.d.ts",
"/dist"
],
"scripts": {
"build": "tsc",
"deploy": "tsc && npm publish",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"author": "",
"license": "MIT",
"repository": "https://github.com/break-stuff/cem-plugin-vs-code-custom-data-generator",
"homepage": "https://github.com/break-stuff/cem-plugin-vs-code-custom-data-generator",
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.3",
"@types/jest": "^29.2.3",
"@types/node": "^18.6.3",
"@types/prettier": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.32.0",
"ts-jest": "^29.0.3"
},
"dependencies": {
"prettier": "^2.7.1"
},
"keywords": [
"custom elements",
"custom-elements",
"custom elements manifest",
"custom-elements-manifest",
"web components",
"web-components",
"components",
"vs-code",
"vs code",
"visual studio code",
"autocomplete",
"intellisense",
"web components autocomplete",
"web components intellisense"
]
}