@useupup/vanilla 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@useupup/vanilla",
3
+ "version": "3.3.0",
4
+ "description": "Framework-free DOM file uploader (lit-html) with cloud-drive sources, resumable uploads, theming, and ICU i18n.",
5
+ "keywords": [
6
+ "file-upload",
7
+ "file-uploader",
8
+ "upload",
9
+ "uploader",
10
+ "vanilla-js",
11
+ "web-components",
12
+ "javascript",
13
+ "drag-and-drop",
14
+ "dropzone",
15
+ "s3",
16
+ "presigned-url",
17
+ "google-drive",
18
+ "one-drive",
19
+ "dropbox",
20
+ "camera",
21
+ "typescript"
22
+ ],
23
+ "homepage": "https://useupup.com",
24
+ "bugs": {
25
+ "url": "https://github.com/DevinoSolutions/upup/issues"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/DevinoSolutions/upup.git",
30
+ "directory": "packages/vanilla"
31
+ },
32
+ "license": "MIT",
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "type": "module",
37
+ "sideEffects": [
38
+ "./dist/element.js",
39
+ "./dist/element.cjs",
40
+ "*.css"
41
+ ],
42
+ "engines": {
43
+ "node": ">=20"
44
+ },
45
+ "main": "./dist/index.cjs",
46
+ "module": "./dist/index.js",
47
+ "types": "./dist/index.d.ts",
48
+ "typesVersions": {
49
+ "*": {
50
+ "styles": [
51
+ "dist/styles.d.ts"
52
+ ]
53
+ }
54
+ },
55
+ "exports": {
56
+ ".": {
57
+ "types": "./dist/index.d.ts",
58
+ "import": "./dist/index.js",
59
+ "require": "./dist/index.cjs"
60
+ },
61
+ "./element": {
62
+ "types": "./dist/element.d.ts",
63
+ "import": "./dist/element.js",
64
+ "require": "./dist/element.cjs"
65
+ },
66
+ "./styles": {
67
+ "types": "./dist/styles.d.ts",
68
+ "default": "./dist/tailwind-prefixed.css"
69
+ }
70
+ },
71
+ "files": [
72
+ "dist"
73
+ ],
74
+ "dependencies": {
75
+ "@tanstack/virtual-core": "^3.13.0",
76
+ "lit-html": "^3.2.0",
77
+ "@useupup/core": "3.3.0"
78
+ },
79
+ "devDependencies": {
80
+ "@vitest/coverage-v8": "^4.1.2",
81
+ "eslint": "^10.6.0",
82
+ "jsdom": "22.1.0",
83
+ "postcss": "^8.5.2",
84
+ "postcss-cli": "^11.0.1",
85
+ "tsup": "^8.4.0",
86
+ "@types/node": "^20.19.37",
87
+ "typescript": "^5.3.2",
88
+ "vitest": "^4.1.2",
89
+ "@useupup/tailwind-config": "0.1.0",
90
+ "@useupup/eslint-config": "0.1.0"
91
+ },
92
+ "scripts": {
93
+ "build": "tsup && pnpm run build:css",
94
+ "build:css": "postcss src/tailwind.css -o ./dist/tailwind-prefixed.css && node ../../scripts/emit-styles-dts.mjs",
95
+ "dev": "tsup --watch",
96
+ "lint": "eslint . --max-warnings 0",
97
+ "test": "vitest run",
98
+ "test:coverage": "vitest run --coverage",
99
+ "test:watch": "vitest",
100
+ "typecheck": "tsc --noEmit && tsc -p tsconfig.test.json --noEmit"
101
+ }
102
+ }