forked from opentiny/tiny-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 866 Bytes
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
{
"name": "@opentiny/tiny-engine-controller",
"version": "1.0.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build"
},
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./utils": "./dist/utils.js",
"./adapter": "./dist/adapter.js"
},
"dependencies": {
"@opentiny/tiny-engine-canvas": "workspace:^1.0.0",
"@opentiny/tiny-engine-common": "workspace:^1.0.0",
"@opentiny/tiny-engine-http": "workspace:^1.0.0",
"@opentiny/tiny-engine-utils": "workspace:^1.0.0",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0",
"@vue/shared": "^3.3.4",
"vue": "3.2.45"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"vite": "^4.3.7"
}
}