-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "@viselect/vanilla",
"version": "3.1.0",
"description": "Simple, lightweight and modern library library for making visual DOM Selections.",
"main": "./lib/viselect.cjs.js",
"module": "./lib/viselect.esm.js",
"author": "Simon Reinisch <contact@reinisch.io>",
"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'",
"lint:fix": "npm run lint -- --fix"
},
"files": [
"lib",
"src"
],
"keywords": [
"viselect",
"typescript",
"selecting",
"selection",
"user-selection",
"user-interface",
"ui-library",
"ui"
],
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"csstype": "^3.1.0",
"eslint": "^8.19.0",
"rollup": "^2.77.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.7.4",
"vite": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}