-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.57 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
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
104
105
106
107
108
109
110
111
{
"name": "@plusauth/plusauth-widget",
"version": "0.41.1",
"type": "module",
"main": "dist/plusauth-widget.min.js",
"module": "dist/plusauth-widget.esm.js",
"browser": "dist/plusauth-widget.esm.js",
"types": "dist/types/index.d.ts",
"license": "MIT",
"description": "Web widget for rendering PlusAuth views",
"homepage": "https://github.com/PlusAuth/plusauth-widget#readme",
"repository": "https://github.com/PlusAuth/plusauth-widget",
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"scripts": {
"test": "vitest --config vitest.config.ts --project unit",
"test:unit": "vitest --config vitest.config.ts --project unit",
"test:storybook": "vitest --config vitest.config.ts --project storybook",
"type-check": "vue-tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"dev": "cross-env NODE_ENV=development vite",
"build": "rimraf dist && cross-env NODE_ENV=production vite build",
"lint": "eslint . --quiet --fix",
"release": "cross-env GITHUB_TOKEN=$GITHUB_TOKEN release-it",
"storybook": "storybook dev --config-dir .storybook --no-open -p 6006",
"build-storybook": "storybook build --config-dir .storybook --output-dir storybook-static"
},
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"@simplewebauthn/browser": "^13.3.0",
"deepmerge": "^4.3.1",
"vue": "^3.5.38"
},
"devDependencies": {
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@release-it/conventional-changelog": "^11.0.1",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-links": "^10.4.6",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/builder-vite": "^10.4.6",
"@storybook/vue3-vite": "^10.4.6",
"@stylistic/eslint-plugin": "^5.10.0",
"@unocss/postcss": "^66.7.2",
"@unocss/preset-rem-to-px": "^66.7.2",
"@vitejs/plugin-vue": "^6.0.7",
"@vitest/browser-playwright": "^4.1.9",
"@vitest/coverage-v8": "^4.1.9",
"@vue/compiler-sfc": "^3.5.38",
"@vue/language-service": "^3.3.5",
"@vue/shared": "^3.5.38",
"@vue/test-utils": "^2.4.11",
"autoprefixer": "^10.5.1",
"conventional-changelog-conventionalcommits": "^9.3.1",
"core-js": "^3.49.0",
"cross-env": "^10.1.0",
"css-selector-tokenizer": "^0.8.0",
"dompurify": "^3.4.11",
"es-toolkit": "^1.48.1",
"eslint": "^10.5.0",
"eslint-plugin-import-x": "^4.17.0",
"eslint-plugin-storybook": "^10.4.6",
"eslint-plugin-unicorn": "^68.0.0",
"eslint-plugin-vue": "^10.9.2",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"playwright": "^1.61.1",
"postcss": "^8.5.15",
"postcss-import": "^16.1.1",
"postcss-load-config": "^6.0.1",
"postcss-nested": "^7.0.2",
"postcss-replace": "^2.0.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"release-it": "^20.2.0",
"remark-gfm": "^4.0.1",
"rimraf": "^6.1.3",
"storybook": "^10.4.6",
"storybook-addon-vue-mdx": "^3.0.0",
"terser": "^5.48.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"unocss": "^66.7.2",
"vite": "^8.1.0",
"vite-plugin-checker": "^0.14.4",
"vite-plugin-dts": "^5.0.2",
"vite-plugin-lib-inject-css": "^2.2.2",
"vitest": "^4.1.9",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.5"
},
"lint-staged": {
"*.js|*.vue|*.ts": "eslint --ext .js,.ts,.tsx,.vue --fix"
},
"engines": {
"node": ">=22"
},
"browserslist": [
"> 0.5%"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}