-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.31 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
{
"name": "iconpackr",
"version": "1.0.0",
"description": "Personal SVG to component converter",
"type": "module",
"private": true,
"main": "src/index.js",
"bin": {
"iconpackr": "./bin/iconpackr.js"
},
"scripts": {
"start": "node bin/iconpackr.js",
"test": "node tests/test-runner.js",
"test:all": "node tests/test-runner.js all",
"test:performance": "node tests/test-runner.js performance",
"test:regression": "node tests/test-runner.js regression",
"test:react": "node tests/test-runner.js suite \"React JSX\"",
"test:vue": "node tests/test-runner.js suite \"Vue\"",
"test:react-native": "node tests/test-runner.js suite \"React Native\"",
"test:svelte": "node tests/test-runner.js suite \"Svelte\"",
"test:edge-cases": "node tests/test-runner.js suite \"Edge Cases\"",
"test:html-report": "HTML_REPORT=1 node tests/test-runner.js",
"dev": "node bin/iconpackr.js --help",
"clean": "rm -rf dist processed-svgs iconpack/output",
"iconpackr": "node bin/iconpackr.js",
"build": "node bin/iconpackr.js --verbose",
"build-dry": "node bin/iconpackr.js --dry-run",
"build-react": "node bin/iconpackr.js --formats react-jsx,react-tsx",
"build-vue": "node bin/iconpackr.js --formats vue",
"build-native": "node bin/iconpackr.js --formats react-native",
"build-svelte": "node bin/iconpackr.js --formats svelte",
"process": "node bin/iconpackr.js /Users/ashishkashyap/Desktop/svg ./dist --verbose --cleanup-after",
"process-dry": "node bin/iconpackr.js /Users/ashishkashyap/Desktop/svg ./dist --dry-run",
"process-no-cleanup": "node bin/iconpackr.js /Users/ashishkashyap/Desktop/svg ./dist --verbose",
"process-react": "node bin/iconpackr.js /Users/ashishkashyap/Desktop/svg ./dist --formats react-jsx,react-tsx",
"process-vue": "node bin/iconpackr.js /Users/ashishkashyap/Desktop/svg ./dist --formats vue"
},
"keywords": [
"svg",
"icons",
"react",
"vue",
"react-native",
"svelte",
"personal"
],
"author": "Ash Kashyap",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"glob": "^10.3.10",
"ora": "^7.0.1",
"svg-outline-stroke": "^1.3.1",
"svgo": "^3.0.5"
},
"devDependencies": {
"prettier": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}