-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.78 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
{
"name": "evui",
"version": "3.14.0",
"description": "A EXEM Library project",
"author": "exem <dev_client@ex-em.com>",
"license": "MIT",
"type": "module",
"homepage": ".",
"scripts": {
"lint": "eslint --ext .js,.vue --ignore-path .eslintignore --fix src",
"format": "prettier --write \"src/**/*.{js,vue,scss,css,json}\" \"docs/**/*.{js,vue,scss,css,json}\" \"*.{js,cjs,json,md}\"",
"format:check": "prettier --check \"src/**/*.{js,vue,scss,css,json}\" \"docs/**/*.{js,vue,scss,css,json}\" \"*.{js,cjs,json,md}\"",
"docs": "vite serve --config vite.config.js --port 9999",
"build:lib": "vite build --config vite.config.lib.js && rimraf ./dist/demo.html",
"build:docs": "vite build --config vite.config.js --mode production",
"preview": "vite preview --port 9999",
"prepare": "husky",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:visual": "vitest --config vitest.config.browser.js",
"test:visual:update": "vitest --config vitest.config.browser.js --update"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./style": {
"import": "./dist/style.css",
"require": "./dist/style.css"
},
"./package.json": "./package.json"
},
"dependencies": {
"bignumber.js": "^9.3.1",
"dayjs": "^1.11.19",
"korean-regexp": "^1.0.10",
"lodash-es": "^4.17.15",
"vue": "^3.5.8",
"vue3-observe-visibility": "^1.0.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vue/compiler-sfc": "^3.5.8",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.57.1",
"eslint-config-exem": "^3.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-vue": "^8.7.1",
"gh-pages": "^6.1.1",
"highlight.js": "^10.2.0",
"jsdom": "^27.4.0",
"lodash-es": "^4.17.15",
"marked": "^14.1.2",
"marked-gfm-heading-id": "^4.1.3",
"playwright": "^1.58.1",
"prettier": "^3.7.4",
"sass": "^1.94.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"semantic-release": "^25.0.2",
"stylelint": "^16.9.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.0.0",
"vite": "^5.4.8",
"vue-router": "^4.6.3",
"vitest": "^4.0.18",
"vitest-browser-vue": "^2.0.2"
},
"peerDependencies": {
"vue": "*"
},
"lint-staged": {
"*.{js,vue}": "eslint --fix"
}
}