-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "svg-preview-plugin",
"version": "0.5.2",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/lishaobos/svg-preview-plugin",
"repository": "https://github.com/lishaobos/svg-preview-plugin",
"scripts": {
"eslint": "eslint .",
"build": "pnpm eslint && tsup index.ts --dts --format esm,cjs",
"release": "bump --commit \"fix: update version\" --push --tag",
"pub": "pnpm build && pnpm release && pnpm publish"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"browser-sync": "^2.26.14",
"glob": "^7.1.6",
"schema-utils": "^3.0.0"
},
"keywords": [
"vite",
"vite-plugin-svg-icons",
"svg",
"svg-sprite-loader",
"webpack",
"webpack-plugin",
"preview",
"svg-preview"
],
"author": "lishaobos",
"license": "ISC",
"devDependencies": {
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"tsup": "^6.4.0",
"typescript": "^4.8.4",
"vite": "^3.2.3",
"webpack": "^5.74.0"
}
}