-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "@allindevelopers/vue-local-scope",
"license": "MIT",
"version": "0.2.2",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-local-scope.umd.cjs",
"module": "./dist/vue-local-scope.js",
"types": "./dist/vue-local-scope.d.ts",
"exports": {
".": {
"import": "./dist/vue-local-scope.js",
"require": "./dist/vue-local-scope.umd.cjs",
"types": "./dist/vue-local-scope.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/allindevelopers/vue-local-scope.git"
},
"keywords": [
"vue",
"vue3",
"composition-api",
"local-scope"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build && npm run generate-types",
"generate-types": "vue-tsc lib/vue-local-scope.ts --declaration --emitDeclarationOnly --outDir dist",
"preview": "vite preview",
"test": "vue-tsc -b",
"release": "npx np"
},
"peerDependencies": {
"vue": "^3.2"
},
"devDependencies": {
"@allindevelopers/prettier-config": "^1.0.0",
"@types/node": "^22.8.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"prettier": "^3.3.3",
"typescript": "~5.6.2",
"vite": "^5.4.10",
"vue": "^3.2",
"vue-tsc": "^2.1.8"
},
"prettier": "@allindevelopers/prettier-config"
}