-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "@pascal-app/plugin-trees",
"version": "0.1.0",
"description": "First-party example Pascal editor plugin — a procedural trees node with a presets rail panel. Structurally identical to a third-party plugin (peer-deps on @pascal-app/*).",
"repository": {
"type": "git",
"url": "git+https://github.com/pascalorg/plugin-trees.git"
},
"homepage": "https://editor.pascal.app/docs/developers/plugins",
"bugs": {
"url": "https://github.com/pascalorg/plugin-trees/issues"
},
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"files": [
"src",
"README.md"
],
"scripts": {
"check-types": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@dgreenheck/ez-tree": "^1.1.0"
},
"peerDependencies": {
"@pascal-app/core": ">=0.9.1 <1",
"@pascal-app/editor": ">=0.9.1 <1",
"@pascal-app/viewer": ">=0.9.1 <1",
"@react-three/fiber": "^9",
"react": "^18 || ^19",
"three": "^0.185",
"zod": "^4",
"zustand": "^5"
},
"devDependencies": {
"@pascal-app/core": "0.9.1",
"@pascal-app/editor": "0.9.1",
"@pascal-app/viewer": "0.9.1",
"@react-three/fiber": "^9",
"@types/node": "^22.19.12",
"@types/bun": "^1.3.5",
"@types/howler": "^2.2.12",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/three": "^0.184.0",
"react": "^19",
"three": "^0.185",
"typescript": "6.0.3",
"zod": "^4",
"zustand": "^5"
},
"keywords": [
"pascal",
"3d",
"editor",
"plugin"
],
"license": "MIT"
}