-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.04 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
{
"name": "@pascal-app/plugin-articraft",
"version": "0.2.0",
"description": "Browse, generate, pose, and place Articraft articulated assets in Pascal Editor.",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"files": [
"src",
"assets/articraft-mark.webp",
"docs/images/articraft-editor-hero.webp",
"HOST_INTEGRATION.md",
"README.md",
"SECURITY.md",
"LICENSE"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target browser --format esm --splitting --packages external",
"check-types": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"urdf-loader": "^0.13.1"
},
"peerDependencies": {
"@pascal-app/core": ">=1.0.0-beta.4 <1.0.0",
"@pascal-app/editor": ">=1.0.0-beta.4 <1.0.0",
"@pascal-app/viewer": ">=1.0.0-beta.4 <1.0.0",
"@react-three/fiber": "^9",
"react": "^18 || ^19",
"three": "^0.185",
"zod": "^4",
"zustand": "^5"
},
"devDependencies": {
"@pascal-app/core": "1.0.0-beta.4",
"@pascal-app/editor": "1.0.0-beta.4",
"@pascal-app/viewer": "1.0.0-beta.4",
"@react-three/fiber": "^9.5.0",
"@types/bun": "^1.3.5",
"@types/blob-stream": "^0.1.33",
"@types/howler": "^2.2.12",
"@types/node": "^22.19.12",
"@types/pdfkit": "^0.17.3",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/three": "^0.185.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"three": "^0.185.0",
"typescript": "6.0.3",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pascalorg/plugin-articraft.git"
},
"homepage": "https://editor.pascal.app/docs/developers/plugins",
"bugs": {
"url": "https://github.com/pascalorg/plugin-articraft/issues"
},
"keywords": [
"pascal",
"articraft",
"urdf",
"usdz",
"articulated-3d",
"editor",
"plugin"
],
"license": "MIT"
}