-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "create-react-icon-package",
"version": "0.0.0-development",
"description": "SVG-based React components",
"keywords": [
"React",
"SVG",
"Icon",
"Rollup",
"Semantic release",
"Conventional commits",
"Github actions"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf src && rimraf dist",
"build": "npm run svgr && rollup -c",
"svgr": "svgr -d src icons",
"semantic-release": "semantic-release --branches main",
"cz": "git-cz",
"publish-cz": "git add . && npm run cz && git push",
"build-publish": "npm run build && git add . && npm run cz && git push"
},
"author": "Halil Atilla",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@svgr/cli": "^6.1.2",
"@types/react": "^18.0.25",
"cz-conventional-changelog": "^3.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"semantic-release": "^20.1.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@babel/runtime": "^7.16.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/halilatilla/create-react-icon-package.git"
}
}