-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.87 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
{
"name": "@dbsystel/v-quicksight",
"publishConfig": {
"access": "public"
},
"version": "0.4.0",
"description": "A vue3 wrapper for the amazon-quicksight-embedding-sdk",
"repository": {
"type": "git",
"url": "https://github.com/dbsystel/v-quicksight"
},
"homepage": "https://github.com/dbsystel/v-quicksight",
"bugs": {
"url": "https://github.com/dbsystel/v-quicksight/issues"
},
"keywords": [
"quicksight",
"vue",
"vue3",
"vuejs",
"amazon-quicksight-embedding-sdk",
"v-quicksight",
"quicksight-sdk"
],
"author": "Danny Koppenhagen <[email protected]>",
"license": "Apache-2.0",
"private": false,
"type": "module",
"main": "./dist/v-quicksight.umd.js",
"module": "./dist/v-quicksight.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/v-quicksight.es.js",
"require": "./dist/v-quicksight.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test": "npm run test:unit",
"test:unit": "vitest",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint-fix": "npm run lint -- --fix",
"prettier": "prettier --write .",
"prepare": "husky",
"release": "release-it",
"release:pre": "npm run release -- --preRelease",
"release:rc": "npm run release -- --preRelease",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"coverage": "vitest run --coverage"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"dependencies": {
"@aws-sdk/client-quicksight": "^3.550.0",
"amazon-quicksight-embedding-sdk": "2.8.0",
"nanoid": "5.0.8",
"vue": "^3.0.0"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@playwright/test": "1.48.2",
"@release-it/conventional-changelog": "^9.0.0",
"@rushstack/eslint-patch": "1.10.4",
"@tsconfig/node20": "20.1.4",
"@types/jsdom": "21.1.7",
"@types/node": "22.10.0",
"@vitejs/plugin-vue": "5.2.1",
"@vitest/coverage-v8": "2.1.6",
"@vue/eslint-config-prettier": "10.1.0",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.7.0",
"eslint": "8.57.1",
"eslint-plugin-vue": "9.32.0",
"husky": "9.1.7",
"jsdom": "25.0.1",
"npm-run-all2": "7.0.1",
"prettier": "3.4.1",
"release-it": "17.10.0",
"typescript": "5.7.2",
"vite": "6.0.1",
"vite-plugin-dts": "4.3.0",
"vitepress": "1.5.0",
"vitest": "2.1.6",
"vue-tsc": "2.1.10"
}
}