-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 2.04 KB
/
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
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
78
79
80
81
82
83
84
{
"name": "@uni-helper/vite-plugin-uni-layouts",
"type": "module",
"version": "0.1.10",
"packageManager": "[email protected]",
"description": "Customizable layouts framework for uni-app applications using Vite.",
"author": "KeJun",
"license": "MIT",
"homepage": "https://github.com/uni-helper/vite-plugin-uni-layouts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/vite-plugin-uni-layouts.git"
},
"bugs": "https://github.com/uni-helper/vite-plugin-uni-layouts/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./client": {
"types": "./client.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
],
"client": [
"./client.d.ts"
]
}
},
"files": [
"client.d.ts",
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"play": "npm -C playground run dev:h5",
"play:mp-weixin": "npm -C playground run dev:mp-weixin",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/types": "^7.23.5",
"@uni-helper/uni-env": "^0.1.1",
"@vue/compiler-core": "^3.3.11",
"@vue/compiler-sfc": "^3.3.11",
"ast-kit": "^0.11.3",
"c12": "^1.5.1",
"chokidar": "^3.5.3",
"fast-glob": "^3.3.2",
"jsonc-parser": "^3.2.0",
"magic-string": "^0.30.5",
"scule": "^1.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.26",
"@types/node": "^20.10.4",
"bumpp": "^9.2.1",
"eslint": "^8.55.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^4.4.12",
"vitest": "^1.0.4"
}
}