-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.18 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
45
46
47
48
49
50
51
52
{
"name": "@coreui/utils",
"version": "2.0.2",
"description": "CoreUI Utilities",
"keywords": [
"coreui",
"js",
"utilities",
"functions",
"methods"
],
"homepage": "https://coreui.io",
"repository": {
"type": "git",
"url": "https://github.com/coreui/coreui-utils.git"
},
"license": "MIT",
"author": {
"name": "CoreUI",
"url": "https://coreui.io",
"github": "https://github.com/coreui",
"twitter": "https://twitter.com/core_ui"
},
"contributors": [
{
"name": "CoreUI Team",
"url": "https://github.com/orgs/coreui/people"
}
],
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"src/",
"dist/"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint \"src/**/*.{js,ts,tsx}\""
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"rollup": "^3.18.0",
"typescript": "^4.9.5"
}
}