-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.82 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.82 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@observerly/aestrium",
"version": "0.12.0",
"description": "The aestrium Sky Viewer Vite & Vue.js (Vue 3 + Typescript) Component Library by observerly",
"repository": "https://github.com/observerly/aestrium.git",
"author": "Michael Roberts <michael@observerly.com>",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/aestrium.es.js",
"types": "./dist/src/index.d.ts",
"module": "./dist/aestrium.es.js",
"exports": {
".": {
"import": "./dist/aestrium.es.js",
"require": "./dist/aestrium.umd.js"
}
},
"unpkg": "./dist/aestrium.umd.js",
"jsdelivr": "./dist/aestrium.umd.js",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"lib": "tsc --noEmit && vue-tsc --noEmit && vite build --config vite.lib.config.ts",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"test": "vitest",
"test:unit": "vitest run",
"coverage": "vitest run --coverage",
"e2e": "npm run cy:run",
"e2e:record": "npm run cy:run --record &> /dev/null",
"e2e:record:parallel": "npm run e2e:record -- --parallel",
"cy:verify": "cypress verify",
"cy:info": "cypress info",
"cy:version": "cypress version",
"cy:cache:list": "cypress cache list",
"cy:run": "npm run dev & wait-on http://localhost:8099 & cypress run -q",
"cy:open": "cypress open"
},
"dependencies": {
"@observerly/polaris": "^0.56.0",
"@vueuse/core": "^8.6.0",
"@vueuse/gesture": "^2.0.0-beta.1",
"vue": "^3.2.37"
},
"peerDependencies": {
"@vueuse/core": "^8.6.0",
"@vueuse/gesture": "^2.0.0-beta.1",
"vue": "^3.2.37"
},
"devDependencies": {
"@cypress/vue": "^3.1.1",
"@rollup/plugin-typescript": "^8.3.2",
"@rushstack/eslint-patch": "^1.1.3",
"@types/node": "^17.0.25",
"@types/offscreencanvas": "^2019.7.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.2",
"c8": "^7.11.3",
"cypress": "^9.5.4",
"cypress-cucumber-preprocessor": "^4.3.1",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^8.2.0",
"jsdom": "^20.0.0",
"path": "^0.12.7",
"prettier": "2.5.1",
"tslib": "^2.3.1",
"typescript": "^4.7.3",
"vite": "^2.9.9",
"vite-plugin-windicss": "^1.8.4",
"vitest": "^0.16.0",
"vue-tsc": "^0.37.0",
"wait-on": "^6.0.1",
"windicss": "^3.5.4"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}