-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 3.32 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@arizeai/point-cloud",
"version": "4.0.0",
"license": "MIT",
"author": "Mikyo King <[email protected]>",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "vite",
"build": "vite build && tsc --emitDeclarationOnly --outDir dist",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src",
"lint:ts:fix": "eslint --fix ./src",
"prettier": "prettier --write './src/**/*'",
"prettier:check": "prettier --check './src/**/*'",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=46df7a59e0a8",
"ci:publish": "pnpm publish",
"ci:version": "pnpm changeset version"
},
"peerDependencies": {
"@react-three/drei": "^9.105.5",
"@react-three/fiber": "^8.0.12",
"react": ">=18",
"three": "^0.139.2",
"three-stdlib": "2.23.9"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"trailingComma": "all"
},
"size-limit": [
{
"name": "cjs",
"path": "dist/index.cjs",
"limit": "10 kB"
},
{
"name": "esm",
"path": "dist/index.js",
"limit": "10 kB"
}
],
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@react-three/drei": "^9.105.5",
"@react-three/fiber": "8.13.3",
"@size-limit/esbuild": "^11.1.6",
"@size-limit/esbuild-why": "^11.1.6",
"@size-limit/preset-small-lib": "^11.1.6",
"@storybook/addon-designs": "^8.0.4",
"@storybook/react": "^8.4.3",
"@storybook/react-vite": "^8.4.3",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/node": "^22.9.0",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "2.1.5",
"chromatic": "^6.5.4",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^7.0.4",
"prettier": "^3.4.2",
"react": "18",
"react-dom": "18",
"react-is": "^18.1.0",
"size-limit": "^11.1.6",
"storybook": "^8.4.3",
"three": "^0.153.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"description": "A point cloud library for visualizing point clouds using 2D and 3D canvases.",
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arize-ai/point-cloud.git"
},
"keywords": [
"point-cloud"
],
"bugs": {
"url": "https://github.com/Arize-ai/point-cloud/issues"
},
"homepage": "https://github.com/Arize-ai/point-cloud#readme"
}