-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "@krofdrakula/drop",
"version": "1.0.5",
"private": false,
"publishConfig": {
"access": "public"
},
"author": "Klemen Slavič <[email protected]>",
"description": "File dropping made simple",
"license": "MIT",
"keywords": [
"typescript",
"browser",
"file",
"upload",
"parsing"
],
"repository": {
"type": "git",
"url": "https://github.com/KrofDrakula/drop.git"
},
"bugs": {
"url": "https://github.com/KrofDrakula/drop/issues"
},
"homepage": "https://github.com/KrofDrakula/drop#readme",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "vite build",
"dev": "vite ./demo --host 0.0.0.0",
"build-demo": "vite build ./demo",
"test": "vitest",
"prepublish": "vite build",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/dom-webcodecs": "^0.1.7",
"@types/prismjs": "^1.26.0",
"@types/wicg-file-system-access": "^2020.9.6",
"preact": "^10.15.0",
"prismjs": "^1.29.0",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-prismjs": "^0.0.8",
"vitest": "^0.30.1"
}
}