-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
{
"name": "@kindlenext/ui",
"version": "0.0.0",
"description": "The Kindlenext UI Library for ReactJS",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"LICENSE",
"AUTHORS",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kindlenext/ui.git"
},
"author": "Kindlenext Authors (https://kindlenext.com)",
"bugs": {
"url": "https://github.com/kindlenext/ui/issues"
},
"homepage": "https://github.com/kindlenext/ui#readme",
"license": "MIT",
"private": false,
"keywords": [
"react",
"components",
"kui",
"ui",
"library",
"TypeScript"
],
"devDependencies": {
"@babel/core": "^7.17.5",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@types/react": "^17.0.39",
"babel-loader": "^8.2.3",
"postcss": "^8.4.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.68.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {},
"scripts": {
"sb": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "rollup -c"
}
}