-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.92 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
{
"name": "atom-ide-definitions",
"main": "./lib/main",
"version": "0.4.2",
"description": "A replacement for the Definitions functionality that was originally part of the Atom IDE package from Facebook.",
"keywords": [
"atom-package",
"atom-ide",
"defintion"
],
"repository": "https://github.com/atom-ide-community/atom-ide-definitions",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"bump": "ncu -u -x coffeescript"
},
"dependencies": {
"atom-ide-base": "^2.3.2",
"atom-package-deps": "^7.2.0"
},
"devDependencies": {
"@types/atom": "^1.40.7",
"@types/node": "^16.0.0",
"prettier": "^2.2.1",
"eslint": "7.32.0",
"eslint-config-atomic": "^1.9.0",
"npm-check-updates": "11.8.5"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"package-deps": [
"atom-ide-hyperclick"
],
"consumedServices": {
"definitions": {
"versions": {
"0.1.0": "consumeDefinitionsService"
}
}
},
"providedServices": {
"hyperclick": {
"versions": {
"0.1.0": "getClickProvider"
}
}
},
"configSchema": {
"clickPriority": {
"order": 1,
"title": "Hyperclick Provider Priority",
"description": "Provider priority relative to other providers. For more details see [Hyperclick's provider documentation](https://github.com/facebookarchive/hyperclick#details).",
"type": "number",
"default": 0
},
"clickGrammarScopes": {
"order": 2,
"title": "Hyperclick Grammar Scopes",
"description": "List of scopes to allow action on. For example, `source.js, source.ts, source.go` *Requires reload to take effect.*",
"type": "array",
"default": [],
"items": {
"type": "string"
}
}
}
}