-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 867 Bytes
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
{
"name": "sample-composables",
"version": "1.1.4",
"description": "Sample package to demonstrate the packaging of the vue3 composables",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/noopurphalak/sample-composables.git"
},
"scripts": {
"build": "tsc"
},
"keywords": [
"composables",
"vue3"
],
"author": "Noopur Phalak",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"vue": ">=3.2.29"
}
}