-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.47 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
{
"name": "vue-temp-var",
"type": "module",
"version": "2.0.1",
"description": "A Vue component for defining temporary variables in the template with type inference.",
"author": {
"name": "DevilTea",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DevilTea/vue-temp-var.git"
},
"keywords": [
"vue",
"vue3"
],
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/vue-temp-var.js"
},
"require": {
"types": "./dist/types/index.d.cts",
"default": "./dist/vue-temp-var.cjs"
}
}
},
"main": "./dist/vue-temp-var.cjs",
"module": "./dist/vue-temp-var.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.lib.json --composite false",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm build",
"release": "bumpp && pnpm publish"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"devDependencies": {
"@deviltea/eslint-config": "3.4.1",
"@deviltea/tsconfig": "0.0.6",
"@types/node": "^20.10.1",
"@vitejs/plugin-vue": "5.0.5",
"bumpp": "9.4.1",
"eslint": "8.57.0",
"npm-run-all2": "6.2.2",
"typescript": "5.4.5",
"vite": "5.3.4",
"vite-plugin-dts": "3.9.1",
"vue": "3.4.33",
"vue-tsc": "2.0.26"
}
}