This repository was archived by the owner on Feb 4, 2026. It is now read-only.
forked from liuderchi/ide-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.77 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.77 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
{
"name": "ide-css-updated",
"version": "0.2.0",
"description": "Atom-IDE for CSS, LESS and SCSS language",
"main": "src/main.js",
"scripts": {
"lint": "eslint ./src",
"ci": "npm run lint"
},
"repository": "git@github.com:albert200000/ide-css.git",
"keywords": [
"atom-ide",
"css",
"less",
"scss",
"style-sheet",
"ide",
"language-server-protocol",
"outline-view"
],
"author": "albert200000",
"license": "MIT",
"bugs": {
"url": "https://github.com/albert200000/ide-css/issues"
},
"devDependencies": {
"eslint": "^7.27.0"
},
"dependencies": {
"atom-languageclient": "^1.16.1",
"vscode-langservers-extracted": "^4.10.0"
},
"engines": {
"atom": ">=1.21.0"
},
"activationHooks": [
"source.css:root-scope-used",
"source.css.less:root-scope-used",
"source.css.scss:root-scope-used"
],
"enhancedScopes": [
"source.css",
"source.css.less",
"source.css.scss"
],
"consumedServices": {
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"code-format.range": {
"versions": {
"0.1.0": "provideCodeFormat"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
},
"atomCommands": {
"ide-css:help": "Provides help information and descriptions of commands."
}
}