-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.33 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
67
68
69
70
71
72
{
"name": "feather-icons-react",
"version": "1.0.0",
"description": "Feather Icons as a React component.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "vitest run",
"build": "npm run lint && npm run build-exports && npm run build:bundle && npm run build:cleanup",
"build:copy-files": "babel src -d build --copy-files --no-copy-ignored ",
"build:cleanup": "node clean-icon-exports.js",
"build:bundle": "rollup --config",
"build:icon-components": "babel build/IconComponents -d build/IconComponents",
"build-exports": "node generate-icon-exports.js",
"lint": "eslint src",
"lint:watch": "esw -w lib/**",
"lint:fix": "eslint --fix",
"prepare": "npm run lint:fix && npm run build",
"update-icons": "node update-icons.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianmiller347/feather-icons-react.git"
},
"keywords": [
"feather",
"icons",
"react",
"svg"
],
"author": "Ian J. Miller",
"license": "ISC",
"bugs": {
"url": "https://github.com/ianmiller347/feather-icons-react/issues"
},
"homepage": "https://github.com/ianmiller347/feather-icons-react#readme",
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^25.0.1",
"react-test-renderer": "^16.14.0",
"vitest": "^2.1.8",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/react": "^19.1.7",
"@types/react-dom": "^19.1.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.5",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-watch": "^6.0.1",
"feather-icons": "^4.29.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rollup": "^4.32.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"packageManager": "yarn@4.0.2"
}