-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 980 Bytes
/
package.json
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
{
"name": "uni-render-logic",
"version": "1.0.2",
"description": "uni-app renderjs 逻辑层和视图层跨层调用 mixin",
"author": "xu22web <https://github.com/xu22web>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "https://github.com/xu22web/uni-render-logic.git"
},
"bugs": {
"url": "https://github.com/xu22web/uni-render-logic/issues"
},
"keywords": [
"uni-app",
"vue",
"renderjs"
],
"devDependencies": {
"@types/node": "^20.12.7",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"vue": "^3.4.26"
},
"peerDependencies": {
"vue": "^3.4.26"
}
}