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
42 lines (42 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "@opentiny/tiny-engine-webcomponent-core",
"version": "2.5.0",
"publishConfig": {
"access": "public"
},
"description": "webcomponent vue core",
"scripts": {
"dev": "vite",
"build": "vite build",
"format": "prettier --write **/*{.vue,.js,.ts,.html,.json}",
"publish:npm": "npm run build && npm publish --verbose"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/tiny-engine-webcomponent-core.umd.js",
"module": "dist/tiny-engine-webcomponent-core.es.js",
"repository": {
"type": "git",
"url": "https://github.com/opentiny/tiny-engine",
"directory": "packages/webcomponent"
},
"bugs": {
"url": "https://github.com/opentiny/tiny-engine/issues"
},
"author": "OpenTiny Team",
"license": "MIT",
"homepage": "https://opentiny.design/tiny-engine",
"dependencies": {
"@vue/shared": "^3.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.2",
"prettier": "^2.4.0",
"vite": "^5.4.2"
},
"peerDependencies": {
"vue": "^3.4.15"
}
}