@vue/devtools-electron 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/app.html +36 -0
- package/client/assets/css-a-KJtBLB.js +505 -0
- package/client/assets/diff--l9-nN5b.js +1 -0
- package/client/assets/html-5-AIf93y.js +74 -0
- package/client/assets/index-NNrCE7Vx.css +1 -0
- package/client/assets/index-U-H6nGkn.js +1080 -0
- package/client/assets/javascript-Of8SnKfU.js +699 -0
- package/client/assets/json-t1qiHl76.js +25 -0
- package/client/assets/onig-mBJmD8D5.js +1 -0
- package/client/assets/shellscript-h1L64xId.js +4 -0
- package/client/assets/typescript-b1Nw_bQe.js +666 -0
- package/client/assets/unocss-runtime-kftsoZPE.js +2 -0
- package/client/assets/vitesse-dark-5VceXvs6.js +1 -0
- package/client/assets/vitesse-light-HOMMxGxw.js +1 -0
- package/client/assets/vue-apis-Nh9IahXf.js +1 -0
- package/client/assets/vue-html-eJ6eRCYJ.js +1 -0
- package/client/assets/vue-nOwTje1i.js +2002 -0
- package/client/assets/yaml-FtfhlYqU.js +200 -0
- package/client/color-scheme.js +6 -0
- package/client/css-hXHVOlj5.js +511 -0
- package/client/devtools-panel.css +1 -0
- package/client/devtools-panel.js +77722 -0
- package/client/diff-nydZCsp5.js +7 -0
- package/client/html-r4dic7N6.js +84 -0
- package/client/index.html +15 -0
- package/client/javascript-iu2g-HpL.js +705 -0
- package/client/json-6ED1Ntns.js +31 -0
- package/client/onig-NuJRzyUz.js +4 -0
- package/client/shellscript-lFevXvOp.js +10 -0
- package/client/typescript-SzFP_hYV.js +672 -0
- package/client/unocss-runtime-c8-Zzj4C.js +1974 -0
- package/client/vitesse-dark-Q3b2Vb5y.js +683 -0
- package/client/vitesse-light-T_UJmsth.js +681 -0
- package/client/vue-apis-j7ljdRbm.js +1127 -0
- package/client/vue-html-IdJrwrVJ.js +16 -0
- package/client/vue-vFbCUJfs.js +2118 -0
- package/client/yaml-n_HyS7lr.js +206 -0
- package/dist/app.cjs +1 -0
- package/dist/app.d.cts +2 -0
- package/dist/app.d.ts +2 -0
- package/dist/app.mjs +1 -0
- package/dist/cli.cjs +15 -0
- package/dist/cli.d.cts +2 -0
- package/dist/cli.d.mts +2 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.mjs +9 -0
- package/dist/devtools.d.ts +2 -0
- package/dist/devtools.js +5256 -0
- package/dist/index.cjs +38 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +38 -0
- package/dist/user-app.cjs +38 -0
- package/dist/user-app.d.cts +2 -0
- package/dist/user-app.d.ts +2 -0
- package/dist/user-app.js +46 -0
- package/dist/user-app.mjs +38 -0
- package/icons/128-gray.png +0 -0
- package/icons/128.png +0 -0
- package/icons/16-gray.png +0 -0
- package/icons/16.png +0 -0
- package/icons/48-gray.png +0 -0
- package/icons/48.png +0 -0
- package/package.json +48 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const n = Object.freeze({ displayName: "JSON", name: "json", patterns: [{ include: "#value" }], repository: { array: { begin: "\\[", beginCaptures: { 0: { name: "punctuation.definition.array.begin.json" } }, end: "\\]", endCaptures: { 0: { name: "punctuation.definition.array.end.json" } }, name: "meta.structure.array.json", patterns: [{ include: "#value" }, { match: ",", name: "punctuation.separator.array.json" }, { match: "[^\\s\\]]", name: "invalid.illegal.expected-array-separator.json" }] }, comments: { patterns: [{ begin: "/\\*\\*(?!/)", captures: { 0: { name: "punctuation.definition.comment.json" } }, end: "\\*/", name: "comment.block.documentation.json" }, { begin: "/\\*", captures: { 0: { name: "punctuation.definition.comment.json" } }, end: "\\*/", name: "comment.block.json" }, { captures: { 1: { name: "punctuation.definition.comment.json" } }, match: "(//).*$\\n?", name: "comment.line.double-slash.js" }] }, constant: { match: "\\b(?:true|false|null)\\b", name: "constant.language.json" }, number: { match: `(?x) # turn on extended mode
|
|
2
|
+
-? # an optional minus
|
|
3
|
+
(?:
|
|
4
|
+
0 # a zero
|
|
5
|
+
| # ...or...
|
|
6
|
+
[1-9] # a 1-9 character
|
|
7
|
+
\\d* # followed by zero or more digits
|
|
8
|
+
)
|
|
9
|
+
(?:
|
|
10
|
+
(?:
|
|
11
|
+
\\. # a period
|
|
12
|
+
\\d+ # followed by one or more digits
|
|
13
|
+
)?
|
|
14
|
+
(?:
|
|
15
|
+
[eE] # an e character
|
|
16
|
+
[+-]? # followed by an option +/-
|
|
17
|
+
\\d+ # followed by one or more digits
|
|
18
|
+
)? # make exponent optional
|
|
19
|
+
)? # make decimal portion optional`, name: "constant.numeric.json" }, object: { begin: "\\{", beginCaptures: { 0: { name: "punctuation.definition.dictionary.begin.json" } }, end: "\\}", endCaptures: { 0: { name: "punctuation.definition.dictionary.end.json" } }, name: "meta.structure.dictionary.json", patterns: [{ comment: "the JSON object key", include: "#objectkey" }, { include: "#comments" }, { begin: ":", beginCaptures: { 0: { name: "punctuation.separator.dictionary.key-value.json" } }, end: "(,)|(?=\\})", endCaptures: { 1: { name: "punctuation.separator.dictionary.pair.json" } }, name: "meta.structure.dictionary.value.json", patterns: [{ comment: "the JSON object value", include: "#value" }, { match: "[^\\s,]", name: "invalid.illegal.expected-dictionary-separator.json" }] }, { match: "[^\\s\\}]", name: "invalid.illegal.expected-dictionary-separator.json" }] }, objectkey: { begin: '"', beginCaptures: { 0: { name: "punctuation.support.type.property-name.begin.json" } }, end: '"', endCaptures: { 0: { name: "punctuation.support.type.property-name.end.json" } }, name: "string.json support.type.property-name.json", patterns: [{ include: "#stringcontent" }] }, string: { begin: '"', beginCaptures: { 0: { name: "punctuation.definition.string.begin.json" } }, end: '"', endCaptures: { 0: { name: "punctuation.definition.string.end.json" } }, name: "string.quoted.double.json", patterns: [{ include: "#stringcontent" }] }, stringcontent: { patterns: [{ match: `(?x) # turn on extended mode
|
|
20
|
+
\\\\ # a literal backslash
|
|
21
|
+
(?: # ...followed by...
|
|
22
|
+
["\\\\/bfnrt] # one of these characters
|
|
23
|
+
| # ...or...
|
|
24
|
+
u # a u
|
|
25
|
+
[0-9a-fA-F]{4}) # and four hex digits`, name: "constant.character.escape.json" }, { match: "\\\\.", name: "invalid.illegal.unrecognized-string-escape.json" }] }, value: { patterns: [{ include: "#constant" }, { include: "#number" }, { include: "#string" }, { include: "#array" }, { include: "#object" }, { include: "#comments" }] } }, scopeName: "source.json" });
|
|
26
|
+
var e = [
|
|
27
|
+
n
|
|
28
|
+
];
|
|
29
|
+
export {
|
|
30
|
+
e as default
|
|
31
|
+
};
|