-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.8 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
{
"name": "@convex-dev/geospatial",
"description": "A geospatial index for Convex",
"repository": "github:get-convex/geospatial",
"homepage": "https://github.com/get-convex/geospatial#readme",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/get-convex/geospatial/issues"
},
"version": "0.1.6",
"license": "Apache-2.0",
"keywords": [
"convex",
"component",
"geospatial",
"geo",
"geojs",
"geography",
"geometry",
"s2"
],
"type": "module",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:go": "cd src/s2-bindings && python build.py",
"build:esm": "tsc --project ./esm.json && echo '{\\n \"type\": \"module\"\\n}' > dist/esm/package.json",
"build:cjs": "tsc --project ./commonjs.json && echo '{\\n \"type\": \"commonjs\"\\n}' > dist/commonjs/package.json",
"dev": "cd example; npm run dev",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"test": "vitest"
},
"files": [
"dist",
"src"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@convex-dev/component-source": "./src/client/index.ts",
"types": "./dist/esm/client/index.d.ts",
"default": "./dist/esm/client/index.js"
},
"require": {
"@convex-dev/component-source": "./src/client/index.ts",
"types": "./dist/commonjs/client/index.d.ts",
"default": "./dist/commonjs/client/index.js"
}
},
"./convex.config": {
"import": {
"@convex-dev/component-source": "./src/component/convex.config.ts",
"types": "./dist/esm/component/convex.config.d.ts",
"default": "./dist/esm/component/convex.config.js"
}
}
},
"dependencies": {
"async-channel": "^0.2.0",
"heap-js": "^2.5.0"
},
"peerDependencies": {
"convex": "~1.16.5 || ~1.17.0"
},
"devDependencies": {
"@edge-runtime/vm": "^4.0.3",
"@eslint/js": "^9.9.1",
"@fast-check/vitest": "^0.1.3",
"@types/leaflet": "^1.9.8",
"@types/node": "^18.17.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vitejs/plugin-react": "^4.2.1",
"antd": "^5.13.3",
"convex-test": "0.0.30",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"leaflet": "^1.9.4",
"prettier": "3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"typescript": "~5.0.3",
"typescript-eslint": "^8.4.0",
"vite": "^5.0.8",
"vitest": "^2.1.0"
},
"main": "./dist/commonjs/client/index.js",
"types": "./dist/commonjs/client/index.d.ts",
"module": "./dist/esm/client/index.js"
}