forked from wso2/oxygen-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.53 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@oxygen-ui/react-icons",
"version": "1.1.10",
"description": "The SVG icons from primitives exported as React components.",
"author": "WSO2",
"license": "Apache-2.0",
"sideEffects": false,
"files": [
"dist"
],
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js"
},
"homepage": "https://github.com/wso2/oxygen-ui/tree/main/packages/react-icons#readme",
"bugs": {
"url": "https://github.com/wso2/oxygen-ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wso2/oxygen-ui",
"directory": "packages/react-icons"
},
"keywords": [
"icons",
"react-icons",
"design-system",
"oxygen-ui",
"oxygen-ui-react-icons"
],
"scripts": {
"build": "node scripts/build.js && rollup -c",
"clean": "rimraf dist src/__generated__",
"lint": "pnpm lint:es",
"lint:es": "eslint .",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest --passWithNoTests",
"typecheck": "tsc --noemit -p tsconfig.json"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/generator": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/types": "^7.20.2",
"@oxygen-ui/logger": "1.1.10",
"@oxygen-ui/primitives": "1.1.10",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-virtual": "2.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "18.0.25",
"@wso2/eslint-plugin": "https://gitpkg.now.sh/brionmario/wso2-ui-configs/packages/eslint-plugin?d84dd6df97ba9812d30b17d482ecaec5d35d3e54",
"@wso2/prettier-config": "https://gitpkg.now.sh/brionmario/wso2-ui-configs/packages/prettier-config?d84dd6df97ba9812d30b17d482ecaec5d35d3e54",
"babel-jest": "^29.3.1",
"eslint": "8.25.0",
"fs-extra": "^11.1.0",
"jest": "29.0.3",
"jest-environment-jsdom": "29.0.3",
"prettier": "^2.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"typescript": ">=4.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}