-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1012 Bytes
/
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
{
"name": "shubox",
"version": "1.1.0",
"description": "Shubox javascript SDK",
"author": "[email protected]",
"license": "MIT",
"keywords": [],
"main": "./dist/shubox.umd.js",
"module": "./dist/shubox.es.js",
"typings": "./dist/shubox.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"test-debugger": "vitest --inspect-brk --pool forks --poolOptions.forks.singleFork",
"test-watch": "vitest",
"test": "vitest run",
"dev": "vite --port 8888",
"build": "vitest run && tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"dropzone": "5.7.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/dom-mediacapture-record": "^1.0.19",
"@types/dropzone": "^5.7.8",
"@types/jsdom": "^21.1.6",
"@types/node": "^22.5.0",
"jsdom": "^25.0.0",
"rollup-plugin-typescript-paths": "^1.5.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.1.0",
"vitest": "^2.0.1"
}
}