-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
{
"name": "@tupilabs/vue-lumino",
"description": "A Vue component that integrates with Lumino",
"author": "Bruno P. Kinoshita <[email protected]> (https://twitter.com/kinow)",
"version": "1.2.4-SNAPSHOT",
"license": "Apache-2.0",
"homepage": "https://github.com/tupilabs/vue-lumino/",
"main": "./dist/vue-lumino.js",
"type": "module",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/tupilabs/vue-lumino.git"
},
"bugs": {
"url": "https://github.com/kinow/vue-lumino/issues"
},
"scripts": {
"dev": "vite",
"serve": "vite preview",
"build": "vite build",
"lint": "eslint src --fix",
"test:unit": "vitest run ./tests/unit",
"test:e2e": "concurrently --names 'SERVER,CLIENT' --prefix-colors 'yellow,blue' --success 'first' --kill-others 'yarn run dev' 'yarn wait-on http://localhost:8080/index.html && cypress run --e2e $@'",
"coverage:unit": "vitest run --coverage"
},
"dependencies": {
"@lumino/datagrid": "^2.3.0",
"@lumino/default-theme": "^2.1.4",
"@lumino/widgets": "^2.3.2",
"vue": "^3.4.13"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.18",
"@cypress/vue": "^6.0.0",
"@eslint/js": "^9.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.3",
"@vue/compiler-dom": "^3.4.13",
"@vue/compiler-sfc": "^3.3.6",
"@vue/eslint-config-standard": "^9.0.0",
"@vue/server-renderer": "^3.4.13",
"@vue/test-utils": "^2.4.1",
"concurrently": "^9.0.1",
"cypress": "^14.0.0",
"cypress-vite": "^1.4.2",
"eslint": "^9.0.0",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"happy-dom": "^16.0.1",
"sass": "^1.69.4",
"sinon": "^19.0.2",
"vite": "^6.0.5",
"vitest": "^2.1.3",
"wait-on": "^8.0.1"
},
"keywords": [
"component",
"lumino",
"tabs",
"widgets",
"vue"
],
"packageManager": "[email protected]"
}