-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 1.96 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
{
"name": "s2-tilejson",
"version": "1.9.5",
"description": "Backwards compatible JSON format for describing s2 map tilesets.",
"type": "module",
"keywords": [
"tilejson",
"spec",
"S2"
],
"exports": {
".": "./dist/index.js"
},
"directories": {
"lib": "dist"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typescript": {
"main": "src/index.ts"
},
"files": [
"dist"
],
"scripts": {
"lint+build+test+docs": "bun run lint && bun run build && bun run test && bun run docs",
"lint": "eslint src test",
"lint:fix": "bun run lint -- --fix",
"prettier": "bunx prettier src test tools benchmarks --check",
"prettier:fix": "bunx prettier -- --write",
"format": "bunx prettier:fix && bun run lint:fix",
"build": "rm -rf dist && mkdir dist && rm -f -- tsconfig.tsbuildinfo && tsc",
"types:bundle": "bun run types:build && node scripts/types.mjs",
"prepublishOnly": "bun run lint+build+test+docs",
"package-check": "package-check",
"test:dev": "bun test --watch --coverage",
"test": "bun test",
"test:coverage": "bun run test --coverage",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Open-S2/s2-tilejson.git"
},
"author": "Craig OConnor",
"license": "MIT",
"bugs": {
"url": "https://github.com/Open-S2/s2-tilejson/issues"
},
"homepage": "https://github.com/Open-S2/s2-tilejson#readme",
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/bun": "^1.1.15",
"@types/node": "^22.10.5",
"@types/pbf": "^3.0.5",
"ajv": "^8.17.1",
"coveralls": "^3.1.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.4.0",
"prettier": "^3.4.2",
"typedoc": "^0.27.6",
"typedoc-plugin-coverage": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
}
}