-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
56 lines (56 loc) · 1.2 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
{
"name": "webix-jet",
"version": "3.0.3",
"description": "Webix Jet micro-framework",
"main": "dist/jet.umd.js",
"module": "dist/jet.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/jet.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/jet.umd.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"test": "vitest run",
"dist": "vite build",
"watch": "vite",
"watch-test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webix-hub/webix-jet.git"
},
"keywords": [
"webix",
"jet",
"framework",
"rich",
"ui"
],
"files": [
"/dist",
"README.md"
],
"devDependencies": {
"@vitest/browser": "^0.31.0",
"vite": "^4.3.5",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.0",
"webdriverio": "^8.10.1",
"webix-polyglot": "^3.0.0"
},
"author": "Maksim Kozhukh",
"license": "MIT",
"bugs": {
"url": "https://github.com/webix-hub/webix-jet/issues"
},
"homepage": "https://github.com/webix-hub/webix-jet#readme"
}