forked from cpsoinos/nuxt-svgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.38 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
{
"name": "nuxt-svgo",
"version": "4.0.0",
"packageManager": "[email protected]",
"description": "Nuxt module to load optimized SVG files as Vue components",
"keywords": [
"nuxt",
"nuxt-module",
"nuxtjs",
"svg",
"svgo",
"vue"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/cpsoinos/nuxt-svgo.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"ci:format": "prettier --write --check --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx,vue,md,mdx,gql,graphql,json,yml,yaml}\"",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev": "nuxi dev playground",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,vue,md,mdx,gql,graphql,json,yml,yaml}\"",
"lint": "eslint --ext .js,.ts, --fix .",
"typecheck": "vue-tsc --noEmit",
"prepack": "nuxt-module-build",
"prepare": "husky install",
"test": "cross-env NUXT_TELEMETRY_DISABLED=1 JITI_ESM_RESOLVE=1 pnpm nuxi prepare test/fixtures/basic && cross-env JITI_ESM_RESOLVE=1 vitest run --dir test",
"semantic-release": "semantic-release"
},
"dependencies": {
"@nuxt/kit": "^3.4.0",
"mini-svg-data-uri": "^1.4.4",
"svgo": "^3.0.2"
},
"devDependencies": {
"@cpsoinos/eslint-config-typescript": "0.2.3",
"@cpsoinos/prettier-config": "0.0.0",
"@nuxt/module-builder": "^0.3.1",
"@nuxt/test-utils": "3.11.0",
"@nuxtjs/eslint-config-typescript": "latest",
"cross-env": "^7.0.3",
"eslint": "latest",
"husky": "8.0.3",
"nuxt": "3.9.0",
"pnpm": "8.15.1",
"prettier": "2.8.8",
"semantic-release": "^22.0.0",
"vitest": "^1.1.3",
"vue-tsc": "^1.8.25"
},
"peerDependencies": {
"svgo-loader": "^4.0.0",
"vue": ">=3.2.13",
"vue-loader": "^17.0.0",
"vue-svg-loader": "0.17.0-beta.2"
},
"peerDependenciesMeta": {
"svgo-loader": {
"optional": true
},
"vue-loader": {
"optional": true
},
"vue-svg-loader": {
"optional": true
}
},
"pnpm": {
"overrides": {
"json5@<1.0.2": ">=1.0.2",
"nth-check@<2.0.1": ">=2.0.1"
}
}
}