-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.36 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.36 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-native-text-watcher",
"displayName": "React Native Text Watcher",
"description": "Detects and Warns you unwrapped text strings in React Native projects.",
"version": "1.0.3",
"author": {
"name": "Sugam Subedi",
"email": "sugamsubedi234@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://www.github.com/supSugam/react-native-text-watcher"
},
"capabilities": {
"languages": [
{
"id": "typescriptreact",
"extensions": [
".tsx"
]
},
{
"id": "javascriptreact",
"extensions": [
".jsx"
]
}
]
},
"icon": "logo.png",
"keywords": [
"react-native",
"text-watcher",
"react-native-text-watcher",
"react-native-text",
"react-native-text-detection",
"text-warning"
],
"homepage": "https://www.github.com/supSugam/react-native-text-watcher",
"publishConfig": {
"access": "public"
},
"publisher": "supSugam",
"readme": "README.md",
"bugs": {
"url": "https://www.github.com/supSugam/react-native-text-watcher/issues"
},
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Linters",
"Debuggers",
"Other"
],
"activationEvents": [
"onLanguage:typescriptreact",
"onLanguage:javascriptreact"
],
"contributes": {
"commands": [
{
"command": "react-native-text-watcher.manageCustomTextComponents",
"title": "RN Text Watcher: Manage Custom Text Components"
},
{
"command": "react-native-text-watcher.changeSeverityType",
"title": "RN Text Watcher: Change Severity Type (Warning/Error/Info/Hint)"
}
],
"configuration": {
"title": "React Native Text Watcher",
"properties": {
"react-native-text-watcher.enable": {
"type": "boolean",
"default": true,
"description": "Enable/Disable React Native Text Watcher"
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.89.0"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
}
}