-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "ioa",
"version": "20.0.5",
"description": "为 Serverless 优化的组件化、轻量级基础框架",
"keywords": [
"ioa",
"loader"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./*": "./*"
},
"types": "dist/index.d.ts",
"scripts": {
"watch": "tsc --watch",
"watch:app": "cd ./app/ && tsc --watch",
"build": "tsc",
"start": "node ./app/index.js",
"swc": "swc ./src/* -d ./dist && node ./dist/index.js",
"test": "jtm"
},
"dependencies": {
"consoln": "^3.0.5"
},
"devDependencies": {
"@ioa/config": "^20.0.0",
"@ioa/http": "^20.0.5",
"@koa/cors": "^3.3.0",
"@types/node": "^17.0.23",
"axios": "^0.26.1",
"typea": "^8.1.0"
},
"files": [
"dist",
"README.md",
"README-zh.md"
],
"license": "ISC",
"engines": {
"node": ">= 16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioajs/ioa.git"
}
}