-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.48 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
{
"name": "ornament-ui",
"version": "0.1.29",
"repository": {
"type": "git",
"url": "https://github.com/ikeohachidi/ornament-ui"
},
"author": "ikeohachidi",
"keywords": [
"vue",
"vue.js",
"vue3",
"ui framework",
"component framework",
"ui library",
"component library",
"material",
"bootstrap",
"fluent",
"tailwind"
],
"files": [
"dist"
],
"main": "./dist/ornament.umd.js",
"module": "./dist/ornament.es.js",
"exports": {
".": {
"import": "./dist/ornament.es.js",
"require": "./dist/ornament.umd.js"
},
"./dist/": "./dist/"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"test": "jest src",
"test:vitest": "vitest",
"test:watch": "jest --watch",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"kwik-css": "^0.1.6",
"remixicon": "^3.5.0",
"uid": "^2.0.2",
"vue": "^3.3.4"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@vitejs/plugin-vue": "^4.5.1",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"jsdom": "^22.1.0",
"patch-vue-directive-ssr": "^0.0.1",
"sass": "^1.68.0",
"typescript": "^5.2.2",
"vite": "^5.0.4",
"vitepress": "^1.0.0-rc.20",
"vitest": "^0.34.6",
"vue-loader": "^17.2.2",
"vue-tsc": "^1.8.15"
}
}