-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.74 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@soft-stech/bootsman-ui",
"version": "0.0.47",
"author": "soft-stech",
"repository": "https://github.com/soft-stech/bootsman-ui",
"main": "dist/index.umd.cjs",
"module": "dist/index.es.mjs",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"script": "./dist/index.umd.js",
"require": "./dist/index.cjs.cjs",
"import": "./dist/index.es.mjs",
"default": "./dist/index.umd.js"
},
"./style.css": "./dist/style.css",
"./package.json": "./package.json",
"./src/": "./src/",
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
},
"./*": "./dist/*"
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"test:unit": "vitest",
"test:ui": "vitest --ui",
"test:update": "vitest -u",
"coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"build:package": "vite build",
"build:types": "vue-tsc --emitDeclarationOnly -p tsconfig.vitest.json --composite false",
"build:production": "npm run build:package && npm run build:types",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview",
"prepublishOnly": "npm run build:production"
},
"dependencies": {
"@fontsource-variable/inter": "^5.0.15",
"@vueuse/core": "^10.6.1",
"nanoid": "3.3.7",
"tailwind-merge": "^1.14.0",
"tippy.js": "^6.3.7",
"unplugin-auto-import": "^0.16.7"
},
"peerDependencies": {
"tailwindcss": "^3",
"vue": "^2.7.x"
},
"devDependencies": {
"@histoire/plugin-vue2": "^0.17.4",
"@playwright/test": "^1.39.0",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/jsdom": "^21.1.3",
"@types/node": "^18.18.5",
"@vitejs/plugin-vue2": "^2.3.1",
"@vitest/coverage-istanbul": "^0.34.6",
"@vitest/ui": "^0.34.6",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^1.3.6",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"histoire": "^0.17.5",
"jsdom": "^22.1.0",
"npm-run-all2": "^6.1.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "~5.2.0",
"vite": "^4.4.11",
"vitest": "^0.34.6",
"vue": "^2.7.15",
"vue-tsc": "^1.8.19"
}
}