-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.08 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.08 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@neolution-ch/react-pattern-ui",
"version": "6.0.0",
"description": "Some basic functions and components which are needed in most of projects.",
"repository": {
"type": "git",
"url": "git+https://github.com/neolution-ch/react-pattern-ui"
},
"license": "MIT",
"author": "Neolution",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js",
"styles": "./dist/styles.css"
},
"./styles": "./dist/styles.css",
"./styles.css": "./dist/styles.css"
},
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"jsnext:main": "dist/index.modern.js",
"types": "dist/index.d.ts",
"styles": "./dist/styles.css",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean-dist && yarn build-lib && yarn copy-sass",
"build-lib": "rollup -c",
"clean-dist": "shx rm -rf dist",
"copy-sass": "shx cp -r styles dist/scss",
"lint": "eslint --cache",
"prepack": "yarn build",
"prepare-pr": "yarn prettier . --write && yarn lint && yarn build",
"prettier-check": "prettier --check .",
"start": "rollup -c -w",
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
"tsc": "tsc"
},
"dependencies": {
"classnames": "^2.5.1"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"@neolution-ch/eslint-config-neolution": "2.3.0",
"@popperjs/core": "^2.11.8",
"@release-it/keep-a-changelog": "^7.0.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^18.16.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"bootstrap": "^5.3.8",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.18.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@neolution-ch/reactstrap": "^10.0.0",
"release-it": "^19.2.4",
"rollup": "^4.57.1",
"rollup-plugin-import-css": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sass": "^1.15.3",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.97.3",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^6 || ^7",
"@fortawesome/free-solid-svg-icons": "^6 || ^7",
"@fortawesome/react-fontawesome": "^0.1.18 || ^0.2.0 || ^3.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"@neolution-ch/reactstrap": "^10.0.0"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}