-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.38 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
{
"name": "@mint/pascal-plugin",
"version": "0.1.5",
"description": "Generate, browse and add Mint 3D assets in Pascal Editor.",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./server": {
"types": "./src/server/index.ts",
"default": "./src/server/index.ts"
}
},
"files": [
"compatibility",
"scripts",
"src",
"CHANGELOG.md",
"README.md",
"HOST_INTEGRATION.md",
"LICENSE",
"tsconfig.compatibility.json"
],
"scripts": {
"compatibility": "node scripts/verify-pascal-host-contract.mjs && tsc --noEmit --project tsconfig.compatibility.json",
"type-check": "tsc --noEmit",
"test": "vitest run --config vitest.config.ts"
},
"peerDependencies": {
"@pascal-app/core": ">=0.9.2 <1.0.0 || >=1.0.0-beta.1 <1.0.0",
"@pascal-app/editor": ">=0.9.2 <1.0.0 || >=1.0.0-beta.1 <1.0.0",
"@pascal-app/viewer": ">=0.9.2 <1.0.0 || >=1.0.0-beta.1 <1.0.0",
"react": "^18 || ^19",
"three": "^0.185"
},
"devDependencies": {
"@mint/pascal-core-0-9-2": "npm:@pascal-app/core@0.9.2",
"@mint/pascal-editor-0-9-2": "npm:@pascal-app/editor@0.9.2",
"@mint/pascal-viewer-0-9-2": "npm:@pascal-app/viewer@0.9.2",
"@mint/pascal-core-1-0-0-beta-3": "npm:@pascal-app/core@1.0.0-beta.3",
"@mint/pascal-editor-1-0-0-beta-3": "npm:@pascal-app/editor@1.0.0-beta.3",
"@mint/pascal-viewer-1-0-0-beta-3": "npm:@pascal-app/viewer@1.0.0-beta.3",
"@mint/pascal-core-1-0-0-beta-4": "npm:@pascal-app/core@1.0.0-beta.4",
"@mint/pascal-editor-1-0-0-beta-4": "npm:@pascal-app/editor@1.0.0-beta.4",
"@mint/pascal-viewer-1-0-0-beta-4": "npm:@pascal-app/viewer@1.0.0-beta.4",
"@pascal-app/core": "1.0.0-beta.1",
"@pascal-app/editor": "1.0.0-beta.1",
"@pascal-app/viewer": "1.0.0-beta.1",
"@types/node": "^22.19.12",
"@types/react": "^19.2.2",
"@types/three": "0.185.0",
"react": "^19",
"three": "0.185.0",
"typescript": "^5",
"vitest": "^4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mintdotgg/mint-pascal-plugin.git"
},
"homepage": "https://mint.gg",
"bugs": {
"url": "https://github.com/mintdotgg/mint-pascal-plugin/issues"
},
"keywords": [
"mint",
"pascal",
"3d",
"editor",
"plugin"
],
"license": "MIT"
}