-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 4.05 KB
/
package.json
File metadata and controls
164 lines (164 loc) · 4.05 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "s2json-spec",
"publisher": "OpenS2",
"version": "1.11.1",
"description": "S2JSON is a specification for encoding a variety of geographic data structures",
"keywords": [
"vector",
"gis",
"maps",
"json",
"s2",
"spec"
],
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Programming Languages"
],
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"lint+build+docs+test": "bun run lint && bun run build && bun run docs && bun run test",
"lint": "oxlint src",
"lint:fix": "bun run lint -- --fix",
"fmt": "bunx oxfmt src tools benchmarks --check",
"fmt:fix": "bunx oxfmt -- --write",
"format": "bunx oxfmt:fix && bun run lint:fix",
"build": "rm -rf dist && mkdir dist && rm -f -- tsconfig.tsbuildinfo && tsc -p ./",
"test:dev": "bun test --watch --coverage",
"test": "bun test",
"test:watch": "bun test --watch",
"types:bundle": "bun run types:build && node scripts/types.mjs",
"prepublishOnly": "bun run lint+build+docs+test",
"package-check": "package-check",
"docs": "bunx typedoc",
"vscode:prepublish": "bun run prepublishOnly",
"watch": "tsc -watch -p ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Open-S2/s2json.git"
},
"author": "Craig OConnor",
"license": "MIT",
"bugs": {
"url": "https://github.com/Open-S2/s2json/issues"
},
"files": [
"dist",
"s2json-spec"
],
"homepage": "https://github.com/Open-S2/s2json#readme",
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/bun": "^1.3.8",
"@types/node": "^25.2.2",
"@types/vscode": "^1.109.0",
"ajv": "^8.17.1",
"coveralls": "^3.1.1",
"dependency-cruiser": "^17.3.8",
"eslint-plugin-jsdoc": "^62.5.4",
"eslint-plugin-tsdoc": "^0.5.0",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"typedoc": "^0.28.16",
"typedoc-plugin-coverage": "^4.0.2",
"typescript-eslint": "^8.55.0",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-test": "^1.6.1"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"contributes": {
"languages": [
{
"id": "s2json",
"aliases": [
"S2JSON",
"s2json"
],
"extensions": [
".s2json",
".s2geojson"
],
"configuration": "./language-configuration.json"
},
{
"id": "geojson",
"aliases": [
"GeoJSON",
"geojson"
],
"extensions": [
".geojson",
".geojsonl",
".geojsonld"
],
"configuration": "./language-configuration.json"
},
{
"id": "s2jsonl",
"aliases": [
"S2JSON",
"s2json"
],
"extensions": [
".s2jsonl",
".s2jsonld"
],
"configuration": "./language-configuration.json"
},
{
"id": "geojsonl",
"aliases": [
"GeoJSON",
"geojson"
],
"extensions": [
".jsonl",
".jsonld",
".geojsonl",
".geojsonld"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "s2json",
"scopeName": "source.json.comments",
"path": "./syntaxes/s2json.tmLanguage.json"
},
{
"language": "s2jsonl",
"scopeName": "source.json.lines",
"path": "./syntaxes/s2jsonL.tmLanguage.json"
},
{
"language": "geojson",
"scopeName": "source.geojson.comments",
"path": "./syntaxes/s2json.tmLanguage.json"
},
{
"language": "geojsonl",
"scopeName": "source.geojson.lines",
"path": "./syntaxes/s2jsonL.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:s2json",
"onLanguage:geojson",
"onLanguage:s2jsonl",
"onLanguage:geojsonl"
]
}