-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.54 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "react-lazify",
"displayName": "React Lazify",
"description": "A lazy way to perform lazy imports in your React apps.",
"author": {
"name": "Justin Wallace",
"email": "hi@justinwallace.dev",
"url": "https://www.justinwalllace.dev"
},
"bugs": {
"url": "https://github.com/jpwallace22/react-lazify/issues/new/choose",
"email": "bug@justinwallace.dev"
},
"keywords": [
"react",
"vscode",
"vscode-extension",
"lazy"
],
"version": "0.4.4",
"license": "GPL-3.0",
"homepage": "https://github.com/jpwallace22/react-lazify",
"publisher": "jpwallace22",
"icon": "icon.png",
"engines": {
"vscode": "^1.78.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jpwallace22/react-lazify"
},
"categories": [
"Formatters",
"Other"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Lazify",
"properties": {
"lazify.imports.useDefaultReactImport": {
"type": "boolean",
"default": false,
"description": "If true, all imports will use React.lazy() instead of just lazy()"
},
"lazify.imports.frameworkSource": {
"type": "string",
"default": "react",
"enum": [
"react",
"loadable",
"next"
],
"description": "'react', 'next', or 'gatsby'. Lazify will use the lazy import from whichever framework you specify."
}
}
},
"commands": [
{
"command": "react-lazify.lazify",
"title": "Lazify"
}
],
"keybindings": [
{
"key": "ctrl+alt+cmd+l",
"command": "react-lazify.lazify",
"when": "editorTextFocus && editorLangId == typescriptreact || editorLangId == javascriptreact"
}
]
},
"scripts": {
"vscode:prepublish": "yarn compile",
"compile": "rimraf dist && tsc -p ./",
"build": "rimraf dist && tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn compile && yarn lint",
"lint": "eslint src --ext ts",
"test": "node ./dist/test/runTest.js",
"test:coverage": "c8 --check-coverage yarn test",
"check-types": "tsc --noEmit --skipLibCheck",
"deploy": "vsce publish --yarn"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^18.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "22.x",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.31.1",
"c8": "^8.0.0",
"eslint": "^8.57.0",
"glob": "^8.0.3",
"husky": "4.3.8",
"mocha": "^10.1.0",
"rimraf": "^6.0.1",
"semantic-release": "^21.0.5",
"typescript": "^5.5.4"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}