-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "@primaryindexonline/react-resize",
"version": "0.2.0",
"description": "Change the width and height of the \"moving\" element('s) by holding and dragging the \"hanger\" element",
"author": "Konstantin Smirnov <[email protected]>",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/primaryindexonline/react-resize.git"
},
"bugs": {
"url": "https://github.com/primaryindexonline/react-resize/issues"
},
"homepage": "https://github.com/primaryindexonline/react-resize#readme",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"files": [
"dist"
],
"private": false,
"publishConfig": {
"access": "public"
},
"keywords": [],
"type": "module",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/react": "latest",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"typescript-eslint": "^7.2.0",
"vite-plugin-dts": "^3.9.1"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"peerDependencies": {
"@types/react": "latest",
"react": "latest",
"react-dom": "latest"
}
}