This repository was archived by the owner on Mar 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.08 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.08 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
{
"name": "@new-heat/strata",
"version": "0.11.0",
"description": "Spatiotemporal data infrastructure: DuckDB schema, Zustand slices, types, and AI utilities for NEW HEAT and Agroview.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./sql": {
"types": "./dist/sql/index.d.ts",
"import": "./dist/sql/index.js"
},
"./slices": {
"types": "./dist/slices/index.d.ts",
"import": "./dist/slices/index.js"
},
"./ai": {
"types": "./dist/ai/index.d.ts",
"import": "./dist/ai/index.js"
},
"./colors": {
"types": "./dist/colors/index.d.ts",
"import": "./dist/colors/index.js"
},
"./operators": {
"types": "./dist/operators/index.d.ts",
"import": "./dist/operators/index.js"
}
},
"typesVersions": {
"*": {
"core": [
"./dist/core/index.d.ts"
],
"sql": [
"./dist/sql/index.d.ts"
],
"slices": [
"./dist/slices/index.d.ts"
],
"ai": [
"./dist/ai/index.d.ts"
],
"colors": [
"./dist/colors/index.d.ts"
],
"operators": [
"./dist/operators/index.d.ts"
]
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"zod": "^3.24.0"
},
"devDependencies": {
"@types/geojson": "^7946.0.16",
"typescript": "^5.7.0",
"duckdb": "^1.2.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"@types/geojson": "^7946.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/NEW-HEAT/strata.git"
},
"license": "MIT",
"pnpm": {
"onlyBuiltDependencies": [
"duckdb",
"esbuild"
]
}
}