@lemon-fe/kits 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # `kits`
2
+
3
+ > TODO: description
4
+
5
+ ## Usage
6
+
7
+ ```
8
+ const kits = require('kits');
9
+
10
+ // TODO: DEMONSTRATE API
11
+ ```
package/es/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export * from '@lemon-fe/components';
2
+ export * from '@lemon-fe/hooks';
3
+ export * from '@lemon-fe/layouts';
package/es/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export * from '@lemon-fe/components';
2
+ export * from '@lemon-fe/hooks';
3
+ export * from '@lemon-fe/layouts';
package/es/index.less ADDED
@@ -0,0 +1 @@
1
+ @import '~@lemon-fe/components/es/index.less';
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@lemon-fe/kits",
3
+ "version": "0.0.8",
4
+ "private": false,
5
+ "description": "> TODO: description",
6
+ "author": "鲁盛杰 <lusj@cnlemon.net>",
7
+ "homepage": "",
8
+ "license": "ISC",
9
+ "main": "es/index.js",
10
+ "directories": {
11
+ "es": "es"
12
+ },
13
+ "files": [
14
+ "es"
15
+ ],
16
+ "publishConfig": {
17
+ "registry": "https://registry.npmjs.org"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git@gitlab.nhsoft.cn:lemon-fe/kits-next.git"
22
+ },
23
+ "dependencies": {
24
+ "@lemon-fe/components": "^0.0.8",
25
+ "@lemon-fe/hooks": "^0.0.8",
26
+ "@lemon-fe/layouts": "^0.0.8"
27
+ },
28
+ "scripts": {
29
+ "test": "echo \"Error: run tests from root\" && exit 1"
30
+ }
31
+ }