-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "duanaga-icons",
"private": false,
"version": "0.0.2",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/dua-naga/duanaga-icons.git"
},
"files": [
"dist"
],
"main": "./dist/duanaga-icons.umd.cjs",
"module": "./dist/duanaga-icons.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/duanaga-icons.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/duanaga-icons.umd.cjs"
}
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"format": "npx prettier --write \"src/**/*.{vue,ts}\"",
"lint": "eslint ./src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"type-check": "vue-tsc"
},
"dependencies": {
"vue": "^3.0.0"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vueuse/core": "^11.2.0",
"autoprefixer": "^10.4.20",
"duanaga-ui": "^0.0.1",
"eslint": "^8.37.0",
"eslint-plugin-vue": "^9.10.0",
"path": "^0.12.7",
"postcss": "^8.4.40",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.7",
"typescript": "~5.3.0",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1",
"vue-tsc": "^2.0.6"
}
}