This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "@fusionauth/vue-sdk",
"version": "0.1.0",
"description": "FusionAuth solves the problem of building essential security without adding risk or distracting from your primary application",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-docgen-web-types && vue-tsc && vite build",
"preview": "vite preview",
"test": "vitest --environment jsdom --watch=false",
"test:watch": "vitest --environment jsdom",
"prepare": "husky"
},
"repository": "git+https://github.com/FusionAuth/fusionauth-vue-sdk.git",
"author": "FusionAuth",
"license": "Apache",
"bugs": {
"url": "https://github.com/FusionAuth/fusionauth-vue-sdk/issues"
},
"homepage": "https://github.com/FusionAuth/fusionauth-vue-sdk#readme",
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@testing-library/vue": "^8.0.2",
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/test-utils": "^2.4.4",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"minimist": "1.2.8",
"sass": "1.65.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "3.5.1",
"vitest": "^1.3.1",
"vue": "^3.0.0",
"vue-docgen-web-types": "0.1.8",
"vue-tsc": "^1.8.5"
},
"dependencies": {
"query-string": "8.1.0"
},
"files": [
"dist/*"
],
"types": "./dist/index.d.ts",
"main": "./dist/vue-fusionauth.umd.cjs",
"module": "./dist/vue-fusionauth.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-fusionauth.js",
"require": "./dist/vue-fusionauth.umd.cjs"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"web-types": "./web-types.json"
}