-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
59
60
61
62
63
64
65
66
67
68
{
"name": "svgo-extra",
"version": "2.3.1",
"description": "A collection of SVGO Plug-ins.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"types"
],
"type": "module",
"exports": {
".": {
"require": "./lib/index.cjs.js",
"import": "./lib/index.esm.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"release:nobuild": "changelogen --release && npm publish --access=public && git push --follow-tags",
"release": "npm run build && npm run release:nobuild",
"demo": "node ./playground/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yisibell/svgo-extra.git"
},
"keywords": [
"svgo",
"svgo-plugin",
"svg",
"svg-icon"
],
"author": {
"name": "elenh",
"email": "yisiwings@163.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yisibell/svgo-extra/issues"
},
"homepage": "https://github.com/yisibell/svgo-extra#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-typescript": "^11.1.5",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"changelogen": "~0.5.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"lodash-es": "^4.17.21",
"prettier": "^3.1.1",
"rollup": "^4.9.4",
"rollup-plugin-dts": "^6.1.0",
"svgo": "^3.2.0",
"tslib": "^2.6.2",
"typescript": "~5.3.3"
},
"peerDependencies": {
"svgo": "^3.0.2"
}
}