-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 869 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 869 Bytes
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
{
"name": "@bfchain/virtual-scroll",
"version": "1.6.0",
"main": "./dist/virtual-scroll.iife.js",
"exports": {
".": {
"import": "./dist/virtual-scroll.es.js",
"require": "./dist/virtual-scroll.cjs.js"
}
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/BioforestChain/virtual-scroll.git"
},
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite --host 0.0.0.0 --port 4600",
"publ": "npm publ --access public",
"build": "tsc && vite build && vite build -c .\\vite-iife.config.ts && vite build -c .\\vite-demo.config.ts --base=./",
"vite": "vite"
},
"dependencies": {
"lit-element": "^2.4.0"
},
"devDependencies": {
"rollup-plugin-minify-html-literals": "^1.2.6",
"typescript": "^4.3.2",
"vite": "^2.4.4"
}
}