-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.56 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
92
93
94
95
96
97
98
99
100
{
"name": "today-ui",
"version": "0.2.0",
"description": "dropdown menu toolptip powered by vue3, floating-ui",
"main": "dist/today-ui.umd.js",
"module": "dist/today-ui.es.js",
"types": "dist/today-ui.d.ts",
"exports": {
".": {
"types": "./dist/today-ui.d.ts",
"import": "./dist/today-ui.es.js",
"require": "./dist/today-ui.umd.js"
},
"./package.json": "./package.json",
"./dist/style.css": "./dist/style.css"
},
"sideEffects": [
"*.vue",
"*.md",
"dist/*",
"*.css"
],
"files": [
"dist/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"doc": "histoire build",
"story:preview": "histoire preview",
"dev": "histoire dev",
"dts": "api-extractor run --local",
"build": "vite build && vue-tsc -p tsconfig.type.json && pnpm dts && rm -rf dist/src",
"bd": " vue-tsc -p tsconfig.type.json",
"b": " vite build",
"build:type": "vue-tsc -p tsconfig.type.json",
"bt": "tsc -p tsconfig.type.json",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"typecheck": "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"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.17",
"@microsoft/api-extractor": "^7.43.4",
"@tsconfig/node20": "~20.1.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.11",
"@types/postcss-import": "^14.0.3",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-core": "^3.4.27",
"@vue/compiler-sfc": "^3.4.27",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"cross-env": "^7.0.3",
"histoire": "^0.17.17",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"pinia": "^2.2.1",
"postcss": "^8.4.38",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"typescript": "~5.1.6",
"vite": "^5.2.11",
"vitest": "^0.33.0",
"vue-tsc": "^2.0.17"
},
"dependencies": {
"@floating-ui/vue": "^1.0.6",
"radash": "^12.1.0",
"vue": "^3.4.27"
},
"peerDependencies": {
"vue": "^3.4.0"
},
"keywords": [
"vue3",
"vue",
"Vue.js",
"fluent design",
"fluent",
"floating-ui",
"@floating-ui/dom",
"composition api",
"tooltip",
"menu",
"dropdown",
"contextmenu",
"modal",
"file-tree"
],
"repository": {
"type": "git",
"url": "https://github.com/wflixu/Today-UI"
},
"author": "wflixu",
"license": "MIT"
}