-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.25 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.25 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
{
"name": "gistda-sphere-react",
"version": "1.3.2",
"description": "React wrapper library for GISTDA Sphere Map API with TypeScript support",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"dev:docs": "pnpm --parallel --filter gistda-sphere-react --filter docs run dev",
"lint": "pnpm dlx ultracite check",
"lint:fix": "pnpm dlx ultracite fix",
"typecheck": "tsc --noEmit",
"test": "vitest --watch=false",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --watch=false --coverage",
"prepublishOnly": "pnpm run build",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm dlx ultracite fix",
"pnpm test"
]
},
"keywords": [
"gistda",
"sphere",
"map",
"maplibre",
"react",
"typescript",
"thailand",
"gis"
],
"author": "dulapahv",
"license": "MIT",
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@commitlint/config-conventional": "^20.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"ultracite": "^7.1.4",
"vitest": "^4.0.18"
},
"repository": {
"type": "git",
"url": "https://github.com/dulapahv/gistda-sphere-react.git"
},
"bugs": {
"url": "https://github.com/dulapahv/gistda-sphere-react/issues"
},
"homepage": "https://github.com/dulapahv/gistda-sphere-react",
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}