-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.62 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.62 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "next-flow-interface",
"version": "0.24.0",
"description": "Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "vite build --watch",
"build": "vite build",
"test": "echo All tests passed.",
"type:check": "tsc --noEmit",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"author": "NEXT FLOW",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/N-Flow/next-flow-interface.git"
},
"bugs": {
"url": "https://github.com/N-Flow/next-flow-interface/issues"
},
"homepage": "https://github.com/N-Flow/next-flow-interface#readme",
"keywords": [
"NextFlow",
"3D Showcase",
"Education",
"Visualization",
"Simulation",
"Collaboration",
"Interface"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./api": {
"types": "./dist/api/index.d.ts",
"import": "./dist/api/index.js"
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@babylonjs/core": "8.33.0",
"@eslint/compat": "^1.3.2",
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.33.0",
"@eslint/json": "^0.13.1",
"@eslint/markdown": "^7.1.0",
"@types/bun": "^1.2.20",
"@types/node": "^24.3.0",
"@types/react": "19.1.1",
"@types/react-dom": "19.1.1",
"@typescript-eslint/project-service": "^8.39.1",
"ajv": "^8.17.1",
"antd": "5.27.0",
"brotli-wasm": "^3.0.1",
"clsx": "2.1.1",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unused-imports": "^4.2.0",
"file-type": "^21.0.0",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"mime": "^4.0.7",
"prettier": "^3.6.2",
"react": "19.1.1",
"react-dom": "19.1.1",
"terser": "^5.43.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"valtio": "2.1.7",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"@babylonjs/core": "8.33.0",
"antd": "5.24.1",
"brotli-wasm": "^3.0.1",
"clsx": "2.1.1",
"file-type": "^20.4.1",
"mime": "^4.0.7",
"react": "19.1.1",
"react-dom": "19.1.1",
"valtio": "2.1.3",
"rhine-var": "0.11.2"
}
}