-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.52 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "unplugin-vue-reactivity-function",
"version": "0.3.4",
"packageManager": "pnpm@9.1.3",
"description": "Reactivity function.",
"type": "module",
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"license": "MIT",
"homepage": "https://github.com/zhiyuanzmj/unplugin-vue-reactivity-function#readme",
"bugs": {
"url": "https://github.com/zhiyuanzmj/unplugin-vue-reactivity-function/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhiyuanzmj/unplugin-vue-reactivity-function.git"
},
"author": "zhiyuanzmj",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./vite": {
"require": "./dist/vite.cjs",
"import": "./dist/vite.js"
},
"./webpack": {
"require": "./dist/webpack.cjs",
"import": "./dist/webpack.js"
},
"./rollup": {
"require": "./dist/rollup.cjs",
"import": "./dist/rollup.js"
},
"./esbuild": {
"require": "./dist/esbuild.cjs",
"import": "./dist/esbuild.js"
},
"./volar": {
"require": "./dist/volar.cjs",
"import": "./dist/volar.js"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup --minify",
"dev": "tsup --watch",
"test": "vitest",
"play": "pnpm run -C ./playground dev",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@vue-macros/common": "^1.10.4",
"muggle-string": "^0.4.1",
"ts-macro": "^0.1.5",
"unplugin": "^1.11.0"
},
"devDependencies": {
"@babel/types": "^7.24.9",
"@sxzz/eslint-config": "^3.14.0",
"@sxzz/prettier-config": "^2.0.2",
"@types/node": "^20.14.11",
"@vue-macros/reactivity-transform": "^0.4.6",
"@vue-macros/test-utils": "^1.4.0",
"bumpp": "^9.4.1",
"change-case": "^5.4.4",
"eslint": "^9.7.0",
"eslint-define-config": "^2.1.0",
"fast-glob": "^3.3.2",
"prettier": "^3.3.3",
"tsup": "^8.2.2",
"tsx": "^4.16.2",
"typescript": "^5.6.3",
"vite": "^5.3.4",
"vitest": "^2.0.3",
"vue": "^3.4.33"
},
"engines": {
"node": ">=16.14.0"
},
"prettier": "@sxzz/prettier-config"
}