-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "@voxel51/fiftyone-js-plugin-build",
"version": "1.0.23",
"description": "Build tools for fiftyone JS plugins",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build"
},
"repository": {
"type": "git",
"url": "https://github.com/voxel51/fiftyone-js-plugin-build"
},
"publishConfig": {
"access": "public"
},
"author": "Voxel51, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/voxel51/fiftyone-js-plugin-build/issues"
},
"homepage": "https://github.com/voxel51/fiftyone-js-plugin-build#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^22.7.6",
"@vitejs/plugin-react": "^4.3.2",
"rollup-plugin-node-externals": "^7.1.3",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.2.4",
"vite-plugin-externalize-deps": "^0.8.0"
},
"peerDependencies": {
"@rollup/plugin-node-resolve": "^15",
"@vitejs/plugin-react": "^4",
"@types/node": "*",
"vite": "^5",
"vite-plugin-externalize-deps": "^0.8"
}
}