-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.94 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.94 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
{
"name": "@mmstudio/doccode",
"version": "3.0.5",
"description": "编码服务",
"scripts": {
"dev": "tsc && node ./dist/index.js",
"clean": "del-cli ./dist/",
"lint": "eslint ./src/**/*.ts",
"compile": "tsc",
"build": "npm run clean && npm run lint && npm run compile",
"up": "git pull git@github.com:mm-core/base.git cjs",
"start": "node ./dist/index.js",
"release": "yarn build && standard-version && git push --follow-tags origin main && npm publish"
},
"bin": {
"mm-doccode": "dist/index.js"
},
"repository": {
"type": "https+git",
"url": "https://github.com/mm-core/doccode.git"
},
"homepage": "https://01factory.github.io",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"mm",
"mmstudio",
"01",
"零壹",
"微工厂",
"原子操作",
"控件",
"框架"
],
"author": {
"name": "taoqf",
"email": "tao_qiufeng@126.com"
},
"maintainers": [
{
"name": "taoqf",
"email": "tao_qiufeng@126.com"
}
],
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@mmstudio/an000049": "^4.0.0",
"@mmstudio/an000060": "^5.0.0",
"@next/env": "13.1.0",
"anylogger": "1.0.11",
"anylogger-log4js": "0.2.0",
"body-parser": "1.20.1",
"express": "4.18.2",
"knex": "^2.3.0",
"log4js": "6.7.1",
"pg": "^8.8.0"
},
"devDependencies": {
"@types/body-parser": "latest",
"@types/express": "latest",
"@types/pg": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"ava": "latest",
"del-cli": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-config-ts-lambdas": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"minio": "latest",
"mysql": "latest",
"prettier": "latest",
"standard-version": "latest",
"typescript": "latest"
}
}