-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.97 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
{
"name": "gensvgc",
"version": "1.0.7",
"author": "Victor Razdorov",
"description": "Generating icon components for React and React Native using svg files",
"keywords": [
"react",
"react-native",
"icons",
"component generation",
"typescript",
"cli"
],
"engines": {
"node": ">=20"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"gensvgc": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"gensvgc": "ts-node ./lib/cli.ts icons --dev",
"build": "npm run clean && tsc && npm run copy && chmod +x dist/cli.js",
"copy": "cp -R ./lib/templates/ ./dist/templates/",
"clean": "rm -rf ./dist",
"lint": "eslint --quiet ./lib --ext .ts",
"lint:fix": "eslint --fix ./lib --ext .ts",
"prettier": "prettier --no-error-on-unmatched-pattern --write ./lib/**/*.{ts,json,md}",
"check-types": "tsc -p tsconfig.json --noEmit",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VictorPulzz/gensvgc.git"
},
"bugs": {
"url": "https://github.com/VictorPulzz/gensvgc/issues"
},
"homepage": "https://github.com/VictorPulzz/gensvgc#readme",
"dependencies": {
"bundle-require": "^4.0.2",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"cosmiconfig": "^9.0.0",
"fast-glob": "^3.3.2",
"lodash.camelcase": "^4.3.0",
"lodash.debounce": "^4.0.8",
"react": "^18.2.0",
"shelljs": "^0.8.5",
"typescript": "^5.3.3",
"vite": "^5.1.6",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@types/chokidar": "^2.1.3",
"@types/jest": "^29.5.12",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.debounce": "^4.0.9",
"@types/shelljs": "^0.8.15",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"devmoji": "^2.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}