-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.46 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
{
"name": "unity-find-in-prefabs",
"displayName": "Unity Find In Prefabs",
"description": "Find prefabs which depend on the C# file",
"version": "1.0.13",
"publisher": "jarvisjiang",
"author": {
"name": "Jarvis Jiang",
"email": "[email protected]"
},
"repository": "https://github.com/JiangJie/unity-find-in-prefabs",
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Other"
],
"keywords": [
"unify",
"prefab",
"csharp",
"C#"
],
"activationEvents": [
"onCommand:unity-find-in-prefabs"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "unity-find-in-prefabs",
"title": "Unity: Find C# In Prefabs"
}
],
"menus": {
"commandPalette": [
{
"command": "unity-find-in-prefabs",
"when": "editorLangId == csharp"
}
],
"editor/context": [
{
"command": "unity-find-in-prefabs",
"when": "editorFocus && editorLangId == csharp"
}
],
"editor/title/context": [
{
"command": "unity-find-in-prefabs",
"when": "resourceLangId == csharp"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npx webpack",
"watch": "npx webpack --watch",
"package": "npx webpack --mode production --devtool hidden-source-map",
"compile-tests": "npx tsc -p . --outDir out",
"watch-tests": "npx tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "npx eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.2",
"@types/vscode": "^1.69.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"glob": "^10.3.12",
"mocha": "^10.4.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}