-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.14 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
{
"name": "deck-wind-layer",
"version": "0.1.1",
"description": "A deck.gl v9 wind-particle layer — GPU advection, fading comet trails, camera-synced, with constant on-screen density at any zoom.",
"license": "MIT",
"author": "John Carmack",
"type": "module",
"sideEffects": false,
"keywords": [
"deck.gl",
"deckgl",
"wind",
"particles",
"weather",
"webgl",
"webgl2",
"luma.gl",
"visualization",
"map",
"maplibre"
],
"homepage": "https://github.com/johncarmack1984/deck-wind-layer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/johncarmack1984/deck-wind-layer.git"
},
"bugs": {
"url": "https://github.com/johncarmack1984/deck-wind-layer/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vite build --config vite.lib.config.ts && tsc -p tsconfig.build.json",
"build:demo": "vite build --base=/deck-wind-layer/",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "biome check . && tsc --noEmit && vitest run",
"changeset": "changeset",
"release": "pnpm run build && changeset publish",
"prepublishOnly": "vite build --config vite.lib.config.ts && tsc -p tsconfig.build.json"
},
"peerDependencies": {
"@deck.gl/core": "^9.3.0",
"@luma.gl/core": "^9.3.0",
"@luma.gl/engine": "^9.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@changesets/cli": "^2.31.0",
"@deck.gl/core": "^9.3.4",
"@deck.gl/geo-layers": "^9.3.4",
"@deck.gl/layers": "^9.3.4",
"@luma.gl/core": "^9.3.4",
"@luma.gl/engine": "^9.3.4",
"typescript": "~6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"pnpm": {
"overrides": {
"js-yaml": "^4.2.0",
"read-yaml-file": "^2.1.0"
}
}
}