-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "@formester/universal-font-picker",
"version": "0.0.11",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"main": "./dist/universal-font-picker.umd.js",
"module": "./dist/universal-font-picker.es.js",
"exports": {
".": {
"import": "./dist/universal-font-picker.es.js",
"require": "./dist/universal-font-picker.umd.js"
},
"./dist/universal-font-picker.css": {
"import": "./dist/universal-font-picker.css",
"require": "./dist/universal-font-picker.css"
}
},
"repository": {
"type": "git",
"url": "https://github.com/formester/universal-font-picker.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"lodash": "^4.17.21",
"vue": "^3.2.38",
"vue-select": "^4.0.0-beta.5"
},
"peerDependencies": {
"vue": "3.x"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^2.0.2",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"vite": "^3.0.9",
"vitest": "^0.23.0"
}
}