-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "@em2046/material-design-icons-vue-next",
"version": "1.0.0-alpha.6",
"license": "MIT",
"files": [
"dist",
"src"
],
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"typings": "./dist/index.d.ts",
"scripts": {
"dev": "vite --https",
"gulp:icon": "gulp --require ts-node/register/transpile-only icon",
"gulp:style": "gulp --require ts-node/register/transpile-only style",
"gulp:lib": "gulp --require ts-node/register/transpile-only lib",
"build": "yarn gulp:icon && yarn gulp:style && yarn gulp:lib",
"build:demo": "vite build",
"prettier": "prettier --write {src,build,tests}/**/*.{js,jsx,ts,tsx,css,vue}",
"prepublishOnly": "yarn prettier && yarn build"
},
"dependencies": {
"vue": "^3.0.4"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.12.1",
"@rollup/plugin-typescript": "^8.1.0",
"@types/gulp": "^4.0.7",
"@types/gulp-concat": "^0.0.32",
"@types/gulp-rename": "^2.0.0",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.165",
"@types/prettier": "^2.1.5",
"@types/puppeteer": "^5.4.2",
"@types/through2": "^2.0.36",
"@vue/compiler-sfc": "^3.0.4",
"@vue/test-utils": "^2.0.0-beta.12",
"del": "^6.0.0",
"esbuild": "^0.8.23",
"globby": "^11.0.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-concat-css": "^3.1.0",
"gulp-rename": "^2.0.0",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"material-design-icons": "^3.0.1",
"prettier": "^2.2.1",
"puppeteer": "^5.5.0",
"rollup": "^2.35.1",
"through2": "^4.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3",
"vite": "^1.0.0-rc.13"
}
}