-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
120 lines (120 loc) · 2.39 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "vscode-arcaea-file-format",
"displayName": "Vscode Arcaea File Format Support",
"description": "Util for reading and editing arcaea .aff files",
"license": "MIT",
"version": "0.14.0",
"publisher": "yojohanshinwataikei",
"repository": "github:yojohanshinwataikei/vscode-arcaea-file-format",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:arcaea-aff"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "arcaea-aff",
"aliases": [
"Arcaea File Format",
"arcaea-aff"
],
"extensions": [
".aff"
],
"configuration": "./language-configuration.json"
},
{
"id": "json",
"filenames": [
"songlist",
"packlist",
"unlocks"
]
}
],
"grammars": [
{
"language": "arcaea-aff",
"scopeName": "source.arcaea-aff",
"path": "./syntaxes/arcaea-aff.tmLanguage.json"
}
],
"snippets": [
{
"language": "arcaea-aff",
"path": "./snippets.json"
}
],
"jsonValidation": [
{
"fileMatch": "songlist",
"url": "./json-schema/songlist.json"
},
{
"fileMatch": "songlist.json",
"url": "./json-schema/songlist.json"
},
{
"fileMatch": "songdata.json",
"url": "./json-schema/songdata.json"
},
{
"fileMatch": "packlist",
"url": "./json-schema/packlist.json"
},
{
"fileMatch": "packlist.json",
"url": "./json-schema/packlist.json"
},
{
"fileMatch": "packdata.json",
"url": "./json-schema/packdata.json"
},
{
"fileMatch": "unlocks",
"url": "./json-schema/unlocks.json"
},
{
"fileMatch": "unlocks.json",
"url": "./json-schema/unlocks.json"
},
{
"fileMatch": "unlockdata.json",
"url": "./json-schema/unlockdata.json"
}
],
"configuration": [
{
"title": "Arcaea File Format",
"properties": {
"arcaeaFileFormat.diagnosticLevel": {
"description": "Specify the minimal level of reported diagnostic",
"type": "string",
"default": "all",
"enum": [
"all",
"warn",
"error"
]
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/node": "^16.11.7",
"typescript": "^4.7.3"
}
}