-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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
71
72
73
74
75
76
77
78
79
{
"name": "@revolist/revo-dropdown",
"version": "3.0.3",
"description": "Minimalistic dropdown with keyboard support and search",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/revo-dropdown/revo-dropdown.js",
"exports": {
".": {
"import": "./dist/revo-dropdown/revo-dropdown.esm.js",
"require": "./dist/revo-dropdown/revo-dropdown.cjs.js",
"types": "./dist/types/index.d.ts"
},
"./standalone": {
"import": "./standalone/revo-dropdown.js",
"types": "./standalone/revo-dropdown.d.ts"
},
"./standalone/revo-dropdown.js": {
"import": "./standalone/revo-dropdown.js",
"types": "./standalone/revo-dropdown.d.ts"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"files": [
"dist/",
"loader/",
"standalone/",
"hydrate/"
],
"author": "revolist",
"homepage": "https://github.com/revolist/revodropdown#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/revolist/revodropdown.git"
},
"bugs": {
"url": "https://github.com/revolist/revodropdown/issues"
},
"keywords": [
"revo-dropdown",
"revolist",
"datagrid",
"revoGrid",
"stenciljs",
"reactive",
"virtualgrid",
"virtual vue grid",
"react datagrid",
"editable",
"excel",
"webcomponent",
"autocomplete",
"dropdown",
"jsdropdown",
"dropdownlist"
],
"scripts": {
"build": "stencil build --docs",
"serve": "stencil build --dev --watch --serve",
"deploy": "gh-pages -d ./www"
},
"license": "MIT",
"devDependencies": {
"@stencil/core": "^4.19.2",
"@stencil/sass": "^3.0.12",
"typescript": "^5.5.3",
"@types/node": "^20.14.10",
"gh-pages": "^6.1.1"
}
}