forked from simonwep/viselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "@viselect/react",
"version": "3.0.0-beta.2",
"description": "React wrapper around the viselect vanilla library",
"main": "./lib/viselect.min.js",
"module": "./lib/viselect.min.mjs",
"types": "./lib/viselect.min.d.ts",
"author": "Simon Reinisch <[email protected]>",
"bugs": "https://github.com/Simonwep/selection/issues",
"homepage": "https://github.com/Simonwep/selection#readme",
"repository": "git+https://github.com/Simonwep/selection.git",
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "vite",
"lint": "eslint {src,demo}/**/*.{ts,tsx}",
"lint:fix": "npm run lint -- --fix"
},
"files": [
"lib",
"src"
],
"keywords": [
"react",
"viselect",
"typescript",
"selecting",
"selection",
"user-selection",
"user-interface",
"ui-library",
"ui"
],
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@vitejs/plugin-react-refresh": "^1.3.3",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.52.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^1.4.0",
"typescript": "^4.3.4",
"vite": "^2.3.8"
},
"publishConfig": {
"access": "public"
}
}