-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "@raresail/react-ionicons",
"version": "2.0.0",
"repository": "git@github.com:RaresAil/react-ionicons.git",
"author": "RaresAil <rares.ailincai@raresdesigns.com>",
"license": "Apache-2.0",
"private": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@svgr/cli": "^8.1.0",
"@types/react": "^18.2.70",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^2.1.1",
"postcss": "^8.4.38",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"scripts": {
"build:icons": "rimraf ./src/icons && svgr ./src/svg && node post-build-icons.js",
"build": "rimraf ./dist && yarn run build:icons && rollup -c --bundleConfigAsCjs",
"lint": "eslint src/**/*.ts"
}
}