-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "@marketally/nopwd-vue3-library",
"private": false,
"version": "4.0.3",
"type": "module",
"author": "MarketAlly",
"license": "MIT",
"description": "Provides a login module for the nopwd system and support libraries",
"files": [
"dist",
"nopwd-vue3-library.d.ts"
],
"main": "./dist/nopwdVue3Library.umd.js",
"module": "./dist/nopwdVue3Library.es.js",
"exports": {
".": {
"import": "./dist/nopwdVue3Library.es.js",
"require": "./dist/nopwdVue3Library.umd.js"
},
"./dist/nopwdVue3Library.css": {
"import": "./dist/nopwdVue3Library.css",
"require": "./dist/nopwdVue3Library.css"
}
},
"types": "nopwd-vue3-library.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"postbuild": "node copy-assets.cjs"
},
"dependencies": {
"@marketally/nopwd-vue3-library": "^1.1.7",
"@vueuse/core": "9.10.0",
"axios": "^1.4.0",
"guid-typescript": "^1.0.9",
"qrcode-vue3": "^1.6.8",
"vue": "^3.2.45"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/node": "^20.4.4",
"@vitejs/plugin-vue": "^4.0.0",
"fs-extra": "^11.1.1",
"path": "^0.12.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vue-tsc": "^1.0.11"
}
}