generated from foxglove/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "@foxglove/three-text",
"version": "0.3.1",
"description": "Render text in 3D using Signed Distance Fields",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/three-text.git"
},
"author": {
"name": "Foxglove",
"email": "contact@foxglove.dev",
"url": "https://foxglove.dev/"
},
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist *.tsbuildinfo",
"prepack": "tsc -b tsconfig.json tsconfig.cjs.json",
"build": "tsc -b tsconfig.json tsconfig.cjs.json",
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"test": "echo 'nothing to test'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@mapbox/tiny-sdf": "2.0.6"
},
"peerDependencies": {
"three": ">=0.140.2"
},
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@foxglove/tsconfig": "2.0.0",
"@storybook/addon-essentials": "7.6.16",
"@storybook/react": "7.6.16",
"@storybook/react-webpack5": "7.6.16",
"@types/jest": "29.5.14",
"@types/node": "22.7.5",
"@types/react": "18.3.3",
"@types/three": "0.165.0",
"chromatic": "11.3.2",
"eslint": "9.14.0",
"eslint-plugin-storybook": "0.11.0",
"globals": "15.12.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"storybook": "7.6.16",
"three": "0.165.0",
"ts-jest": "29.1.2",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0"
},
"packageManager": "yarn@4.0.2"
}