-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "jmamap",
"version": "1.2.0-alpha.5",
"description": "JMA MAP Loader",
"author": "kikuchan <[email protected]>",
"homepage": "https://github.com/kikuchan/jmamap#readme",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./ol": {
"types": "./dist/ol/index.d.ts",
"import": "./dist/ol/index.js"
}
},
"scripts": {
"clean": "rimraf dist",
"test": "exit 0",
"build": "bun run clean && bun run build:esm && bun run build:types",
"build:esm": "bun run build.ts",
"build:types": "tsc --declaration --emitDeclarationOnly --declarationDir './dist'",
"lint": "bun x eslint .",
"lint:fix": "bun x eslint --fix .",
"format": "bun x prettier -c ./src",
"format:fix": "bun x prettier -w ./src",
"type-check": "tsc --noEmit -p tsconfig.json",
"pack": "npm pack ./dist"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"ol": "^8.2.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}