-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.95 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
{
"name": "turbo-colormap",
"version": "1.0.0",
"license": "MIT",
"description": "A TypeScript library for working with Turbo, an improved rainbow colormap for visualization, often used for depth maps.",
"keywords": [
"colormap",
"turbo",
"grayscale",
"depth",
"depth map",
"color conversion"
],
"homepage": "https://exogen.github.io/turbo-colormap",
"author": {
"name": "Brian Beck",
"email": "exogen@gmail.com",
"url": "https://brianbeck.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/exogen/turbo-colormap.git"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"files": [
"src",
"dist",
"README.md"
],
"scripts": {
"dev": "next dev demo",
"build": "npm run build:dist && npm run build:readme && npm run build:pages",
"build:dist": "tshy",
"build:pages": "next build demo && touch docs/.nojekyll",
"build:readme": "tsdoc --src=src/index.ts",
"prepare": "npm run build:dist"
},
"devDependencies": {
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"next": "^14.2.15",
"react": "^18.3.1",
"react-color-palette": "^7.3.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.9",
"react-icons": "^5.3.0",
"react-range": "^1.10.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsdoc-markdown": "^0.6.0",
"tshy": "^3.0.2",
"typescript": "^5.6.3"
},
"dependencies": {
"kdtree-typescript": "^1.3.0"
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.js"
}
}
}