-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "win7-ui",
"version": "1.1.0",
"description": "Vue2 component library for recreating Windows 7 UI",
"license": "MIT",
"homepage": "https://win7ui.visnalize.com",
"main": "./lib/index.umd.js",
"module": "./lib/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.umd.cjs"
}
},
"keywords": [
"windows7",
"vue",
"vuejs",
"js",
"components"
],
"files": [
"lib",
"types"
],
"repository": {
"url": "https://github.com/Visnalize/win7-ui"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"docs:dev": "cd docs && yarn dev",
"docs:build": "yarn build && cd docs && yarn build",
"docs:deploy": "yarn docs:build && gh-pages -d docs/src/.vuepress/dist -b docs",
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
"test:unit": "cypress open --component",
"test:unit:ci": "cypress run --component --quiet --reporter spec",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"devDependencies": {
"7.css": "^0.16.0",
"@rushstack/eslint-patch": "^1.1.0",
"@vitejs/plugin-legacy": "^2.0.0",
"@vitejs/plugin-vue2": "^1.1.2",
"@vue/eslint-config-prettier": "^7.0.0",
"cypress": "^10.3.0",
"eslint": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.0.0",
"gh-pages": "^5.0.0",
"prettier": "^2.5.1",
"sass": "^1.55.0",
"start-server-and-test": "^1.14.0",
"terser": "^5.14.2",
"vite": "^3.0.2",
"vue": "^2.7.7"
}
}