forked from designbyadrian/react-input-with-drag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 KB
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
{
"name": "react-input-with-drag",
"version": "1.1.0",
"description": "Lightweight, zero-dependency, number input component with mouse drag actions just like in Blender and 3D Studio Max.",
"keywords": [
"react",
"input",
"draggable",
"blender"
],
"author": "Adrian von Gegerfelt <adrian@designbyadrian.com>",
"license": "MIT",
"scripts": {
"build": "npm run clean && node build.js && tsc --emitDeclarationOnly --outDir dist",
"clean": "rimraf dist",
"dev": "node serve.js",
"prepublishOnly": "npm run build"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/designbyadrian/react-input-with-drag#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/designbyadrian/react-input-with-drag.git"
},
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"esbuild": "^0.14.42",
"live-server": "^1.2.2",
"npm": "^8.11.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.2"
}
}