@ferris-wheel/plugin 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/emoji-M6dOraxk.js +9705 -0
- package/dist/index.js +7276 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ferris-wheel/plugin",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Ferris Wheel plugin for Luna Park",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"luna-park",
|
|
8
|
+
"plugin",
|
|
9
|
+
"ferris wheel",
|
|
10
|
+
"ui"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://luna-park.app",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/lunapark"
|
|
16
|
+
},
|
|
17
|
+
"author": {
|
|
18
|
+
"name": "Luna Park",
|
|
19
|
+
"url": "https://luna-park.app"
|
|
20
|
+
},
|
|
21
|
+
"type": "module",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": "./dist/index.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"module": "./dist/index.js",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist/**"
|
|
30
|
+
],
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@luna-park/logicnodes": "link:..\\..\\..\\core\\packages\\logicnodes",
|
|
33
|
+
"@fortawesome/pro-solid-svg-icons": "link:..\\..\\..\\..\\@fortawesome\\pro-solid-svg-icons",
|
|
34
|
+
"@ferris-wheel/design": "^1.17.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@luna-park/eslint-config": "^1.0.2",
|
|
38
|
+
"@luna-park/plugin": "link:../../../core/packages/plugin",
|
|
39
|
+
"@types/node": "^25.0.0",
|
|
40
|
+
"@vitejs/plugin-vue": "^6.0.2",
|
|
41
|
+
"@vue/tsconfig": "^0.8.1",
|
|
42
|
+
"eslint": "^9.39.1",
|
|
43
|
+
"globals": "^16.5.0",
|
|
44
|
+
"typescript": "^5.9.3",
|
|
45
|
+
"typescript-eslint": "^8.49.0",
|
|
46
|
+
"vite": "^7.2.7",
|
|
47
|
+
"vite-node": "^5.2.0",
|
|
48
|
+
"vue-tsc": "^3.1.8"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"vue": "^3.5.24"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "vite build",
|
|
55
|
+
"dev": "vite build --watch",
|
|
56
|
+
"preview": "luna-preview",
|
|
57
|
+
"generate": "vite-node src/generate.ts"
|
|
58
|
+
}
|
|
59
|
+
}
|