-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "@activewidgets/html",
"version": "3.5.0",
"description": "Datagrid component (html custom elements)",
"author": "ActiveWidgets SARL",
"license": "MIT",
"type": "module",
"main": "./dist/main.js",
"exports": {
".": "./dist/main.js",
"./index.js": "./dist/index.js",
"./index.css": "./dist/index.css",
"./style-inject": "./dist/style-inject.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node build.js",
"examples": "npm run build && vite build",
"prepack": "npm run build",
"preview": "npm run examples && vite preview --open /",
"start": "vite --open /",
"test": "npm run examples && vitest run"
},
"dependencies": {
"@activewidgets/datagrid": "3.5.0",
"@activewidgets/frameworks": "3.5.0",
"@activewidgets/ui": "*",
"htm": "3.1.0",
"preact": "10.4.4"
},
"devDependencies": {
"@activewidgets/examples": "0.0.16",
"@activewidgets/options": "3.5.0",
"@activewidgets/puppeteer": "0.1.3",
"@testing-library/dom": "^9",
"rollup-plugin-md": "^1",
"vite": "^4",
"vitest": "latest"
},
"overrides": {
"jest": "npm:vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/activewidgets/html.git"
},
"keywords": [
"activewidgets",
"datagrid"
],
"bugs": {
"url": "https://github.com/activewidgets/html/issues"
},
"homepage": "https://activewidgets.com"
}