-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.45 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.45 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
{
"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",
"onCommand:extension.annotatePackageJsonDependencies",
"onCommand:extension.clearPackageJsonDependencyAnnotations",
"workspaceContains:package.json"
],
"main": "./build/index.js",
"contributes": {
"configuration": {
"type": "object",
"title": "React Native Directory",
"properties": {
"reactNativeDirectory.enablePackageJsonAnnotations": {
"type": "boolean",
"default": true,
"markdownDescription": "Automatically annotate `package.json` dependencies with metadata from React Native Directory.",
"scope": "window"
}
}
},
"commands": [
{
"command": "extension.showQuickPick",
"title": "React Native Directory: Search packages"
}
]
},
"version": "1.6.2",
"engines": {
"vscode": "^1.104.0"
},
"scripts": {
"compile": "rimraf build && esbuild ./src/extension.ts --bundle --outfile=build/index.js --external:vscode --format=cjs --platform=node --minify",
"package": "vsce package --no-dependencies",
"lint": "tsc --noEmit && oxlint --type-aware && oxfmt --check",
"lint:fix": "tsc --noEmit && oxlint --type-aware --fix && oxfmt",
"release:dry-run": "bun --env-file=.env semantic-release --dry-run"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.19.0",
"@types/vscode": "^1.104.0",
"@vscode/vsce": "^3.7.1",
"conventional-changelog-conventionalcommits": "^9.3.0",
"esbuild": "^0.27.4",
"ovsx": "^0.10.9",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.1",
"rimraf": "6.1.3",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
}
}