-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.72 KB
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
{
"name": "bottom-sheet-vue3",
"version": "2.0.5",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json",
"./style.css": "./dist/style.css"
},
"license": "MIT",
"repository": {
"url": "git+https://github.com/kadiryazici/bottom-sheet-vue3.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/kadiryazici/bottom-sheet-vue3/issues"
},
"homepage": "https://github.com/kadiryazici/bottom-sheet-vue3#readme",
"keywords": [
"vue",
"sheet",
"bottom-sheet"
],
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "run-s type-check build-only generate-types",
"build-dev": "vite build --mode staging",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"generate-types": "tsc src/index.ts --emitDeclarationOnly --declaration --declarationDir dist/types --jsx preserve"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@types/node": "^16.11.47",
"@vitejs/plugin-vue": "^3.1.2",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.21.0",
"npm-run-all": "^4.1.5",
"sass": "^1.54.8",
"typescript": "4.9.3",
"vite": "^3.0.4",
"vue": "^3.2.45",
"vue-tsc": "^1.0.9"
},
"peerDependencies": {
"vue": "^3.2.45"
}
}