-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
101 lines (101 loc) · 3.25 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
{
"name": "@ownclouders/file-picker",
"version": "0.12.0",
"author": "ownclouders <devops@owncloud.com>",
"description": "Easily integrate ownCloud into your existing products",
"type": "module",
"module": "dist/lib/file-picker.umd.js",
"main": "dist/lib/file-picker.umd.js",
"unpkg": "dist/wc/file-picker.iife.js",
"repository": {
"type": "git",
"url": "git+https://github.com/owncloud/file-picker.git"
},
"keywords": [
"vue",
"vuejs",
"file",
"picker",
"ocis",
"owncloud",
"location",
"picker"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/owncloud/file-picker/issues"
},
"homepage": "https://owncloud.github.io/integration/file_picker",
"scripts": {
"dev": "vite",
"build:lib": "vue-tsc --noEmit && vite build --mode library",
"build:wc": "vue-tsc --noEmit && vite build --mode web-component",
"build": "BABEL_ENV=production rm -rf ./dist && pnpm build:lib && pnpm build:wc",
"preview:ocis": "cp -r ./examples/ocis/ ./dist/wc && vite preview --mode web-component",
"preview:oc10": "cp -r ./examples/oc10/ ./dist/wc && vite preview --mode web-component",
"lint": "eslint",
"test:unit": "BABEL_ENV=test TEST_MODE=unit jest --config ./jest.config.cjs",
"test:integration": "BABEL_ENV=test TEST_MODE=integration jest --config ./jest.config.cjs"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/helper-plugin-utils": "^7.20.2",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"@ownclouders/babel-preset": "^0.0.1",
"@ownclouders/eslint-config": "^0.0.1",
"@ownclouders/prettier-config": "^0.0.1",
"@ownclouders/tsconfig": "^0.0.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/vue": "^5.9.0",
"@types/events": "^3.0.0",
"@types/node": "^18.15.11",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-vue2": "^2.2.0",
"@vue/babel-preset-app": "^5.0.8",
"@vue/test-utils": "^1.3.4",
"@vue/vue2-jest": "^29.2.3",
"babel-jest": "^29.5.0",
"buffer": "^6.0.3",
"core-js": "^3.30.0",
"dotenv": "^16.0.3",
"easygettext": "^2.17.0",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jest-serializer-vue": "^3.1.0",
"jsdom": "^21.1.1",
"lodash": "^4.17.21",
"owncloud-design-system": "15.0.0-alpha.1",
"sass": "^1.60.0",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.3",
"vite": "3.2.5",
"vite-plugin-node-polyfills": "^0.8.1",
"vite-plugin-static-copy": "^0.13.1",
"vue": "2.7.13",
"vue-template-compiler": "2.7.13",
"vue-tsc": "^1.8.3"
},
"dependencies": {
"@ownclouders/web-client": "^0.0.1",
"@vue/web-component-wrapper": "^1.3.0",
"axios": "^0.27.2",
"deepmerge": "^4.3.1",
"events": "^3.3.0",
"lodash-es": "^4.17.21",
"luxon": "^2.4.0",
"oidc-client-ts": "^2.2.2",
"owncloud-sdk": "3.1.0-alpha.4",
"vue-gettext": "^2.1.12"
},
"pnpm": {
"patchedDependencies": {
"@vue/web-component-wrapper@1.3.0": "patches/@vue__web-component-wrapper@1.3.0.patch"
}
}
}