-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 KB
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
{
"name": "next-plugin-svgr",
"author": "Frank Cooke",
"license": "MIT",
"version": "1.1.12",
"description": "Next js plugin for SVGR",
"keywords": [
"next.js",
"svg",
"svgr",
"webpack"
],
"repository": {
"type": "git",
"url": "git+https://github.com/platypusrex/next-plugin-svgr.git"
},
"bugs": {
"url": "https://github.com/platypusrex/next-plugin-svgr/issues"
},
"main": "index.js",
"files": [
"types/*",
"index.js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint \"index.js\"",
"lint:fix": "eslint --fix",
"version": "changeset version",
"release": "pnpm lint && changeset publish && git push --follow-tags"
},
"dependencies": {
"@svgr/webpack": "^8.1.0",
"file-loader": "^6.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"prettier": "^3.4.2"
}
}