-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
101 lines (101 loc) · 3.03 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": "use-tus",
"version": "0.8.2",
"description": "React hooks for resumable file uploads using tus-js-client",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm-run-all -s type clean build:rollup",
"build:rollup": "cross-env NODE_ENV=production rollup -c",
"test": "cross-env NODE_ENV=TEST jest",
"type": "tsc --noEmit",
"format": "npm-run-all -s format:*",
"format:fix": "prettier --write './**/*.{ts,tsx,js,jsx,json}'",
"format:lint": "eslint ./ --ext .ts,.tsx",
"clean": "rimraf ./dist",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:static": "gh-pages -d storybook-static",
"storybook:deploy": "npm-run-all -s storybook:build storybook:static"
},
"keywords": [
"react",
"react-hooks",
"hooks",
"tus",
"tus-js-client"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kqito/use-tus.git"
},
"author": "Nakagawa kaito",
"license": "MIT",
"bugs": {
"url": "https://github.com/kqito/use-tus/issues"
},
"homepage": "https://github.com/kqito/use-tus#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-actions": "^7.5.1",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/react": "^7.5.1",
"@storybook/react-vite": "^7.5.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.5.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"autoprefixer": "^9",
"clsx": "^1.1.1",
"cross-env": "^7.0.3",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^3.1.0",
"husky": "^6.0.0",
"jest": "^29.7.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"postcss": "^7",
"prettier": "^2.2.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.44.0",
"rollup-plugin-esbuild": "^6.1.0",
"storybook": "^7.5.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"ts-jest": "^29.1.1",
"tus-js-client": "^4.0.0",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"peerDependencies": {
"react": ">=16.8",
"tus-js-client": ">=2.2.0"
},
"packageManager": "pnpm@8.8.0"
}