-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.18 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.18 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
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
{
"name": "@designbyadrian/react-interactive-input",
"version": "2.0.3",
"description": "Adjust values in numeric input boxes by clicking and dragging horizontally, just like in Blender and similar 3D applications.",
"keywords": [
"react",
"input",
"draggable",
"scrubb",
"click-and-drag input",
"interactive number field",
"blender"
],
"author": "Adrian von Gegerfelt <adrian@designbyadrian.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/designbyadrian/react-interactive-input.git"
},
"bugs": {
"url": "https://github.com/designbyadrian/react-interactive-input/issues"
},
"license": "MIT",
"type": "module",
"scripts": {
"dev": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"build": "vite build && tsc --project tsconfig.json",
"build:types": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"deploy-storybook": "npm run build-storybook && touch ./storybook-static/.nojekyll && gh-pages -d storybook-static -t true"
},
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/react-interactive-input.cjs.js",
"import": "./dist/react-interactive-input.es.js"
}
},
"main": "./dist/react-interactive-input.cjs.js",
"module": "./dist/react-interactive-input.es.js",
"files": [
"dist",
"dist/types"
],
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@storybook/addon-a11y": "^8.6.9",
"@storybook/addon-essentials": "^8.6.9",
"@storybook/addon-interactions": "^8.6.9",
"@storybook/addon-links": "^8.6.9",
"@storybook/addon-onboarding": "^8.6.9",
"@storybook/blocks": "^8.6.9",
"@storybook/react": "^8.6.9",
"@storybook/react-vite": "^8.6.9",
"@storybook/test": "^8.6.9",
"@types/react": "^19.0.12",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.23.0",
"gh-pages": "^6.3.0",
"storybook": "^8.6.9",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}