-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
104 lines (104 loc) · 2.66 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "nuxt-svgo",
"version": "4.0.2",
"description": "Nuxt module to load optimized SVG files as Vue components",
"keywords": [
"nuxt",
"nuxt-module",
"nuxtjs",
"svg",
"svgo",
"vue"
],
"repository": {
"type": "git",
"url": "https://github.com/cpsoinos/nuxt-svgo.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/module.d.ts"
}
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"ci:format": "prettier --write --check --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx,vue,md,mdx,gql,graphql,json,yml,yaml}\"",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,vue,md,mdx,gql,graphql,json,yml,yaml}\"",
"lint": "eslint --ext .js,.ts, --fix .",
"prepack": "nuxt-module-build",
"prepare": "husky",
"semantic-release": "semantic-release",
"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",
"typecheck": "nuxi typecheck"
},
"lint-staged": {
"package.json": [
"npx sort-package-json"
],
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts,vue,html}": [
"eslint --fix",
"prettier --write"
],
"*.{css,postcss,json,html,md,yml}": [
"prettier --write"
]
},
"dependencies": {
"@nuxt/kit": "^3.4.0",
"mini-svg-data-uri": "^1.4.4",
"svgo": "3.0.2"
},
"devDependencies": {
"@cpsoinos/eslint-config-typescript": "0.2.5",
"@cpsoinos/prettier-config": "1.0.0",
"@nuxt/module-builder": "^0.8.0",
"@nuxt/test-utils": "3.14.4",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"cross-env": "^7.0.3",
"eslint": "8.57.1",
"husky": "9.1.7",
"lint-staged": "^15.2.2",
"nuxt": "3.14.1592",
"pnpm": "9.14.2",
"prettier": "3.3.3",
"semantic-release": "^22.0.0",
"vitest": "^2.0.0"
},
"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
}
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"pnpm": {
"overrides": {
"json5@<1.0.2": ">=1.0.2",
"nth-check@<2.0.1": ">=2.0.1"
}
}
}