-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
{
"name": "vscode-react-native-directory",
"displayName": "React Native Directory",
"description": "Find and install right packages for all of your React Native apps right from VS Code.",
"publisher": "react-native-directory",
"categories": [
"Other"
],
"keywords": [
"react",
"react-native",
"directory",
"search"
],
"license": "MIT",
"repository": "github:react-native-community/vscode-react-native-directory",
"homepage": "https://github.com/react-native-community/vscode-react-native-directory",
"bugs": {
"url": "https://github.com/react-native-community/vscode-react-native-directory/issues"
},
"icon": "./assets/icon.png",
"activationEvents": [
"onCommand:extension.showQuickPick"
],
"main": "./build/index.js",
"contributes": {
"commands": [
{
"command": "extension.showQuickPick",
"title": "React Native Directory: Search packages"
}
]
},
"version": "1.0.3",
"engines": {
"vscode": "^1.94.0"
},
"scripts": {
"compile": "rimraf build && esbuild ./src/extension.ts --bundle --outfile=build/index.js --external:vscode --format=cjs --platform=node --minify",
"lint": "tsc --noEmit && eslint .",
"package": "vsce package --no-dependencies",
"release:dry-run": "bun --env-file=.env semantic-release --dry-run"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.13.5",
"@types/vscode": "^1.94.0",
"@vercel/ncc": "^0.38.3",
"@vscode/vsce": "^3.2.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"jiti": "^2.4.2",
"ovsx": "^0.10.1",
"prettier": "^3.5.2",
"rimraf": "6.0.1",
"semantic-release": "^24.2.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
}
}