-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.5 KB
/
package.json
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
{
"name": "fc",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"generate-schema": "npx typescript-json-schema ./src/interface/index.ts IProps --required -o ./src/schema.json",
"prewatch": "mkdir -p dist && cp src/schema.json dist/schema.json",
"prebuild": "rimraf dist && mkdir -p dist && cp src/schema.json dist/schema.json",
"watch": "npx tsc -w -p tsconfig.json",
"start": "npm run watch",
"build": "ncc build src/index.ts -m -o dist",
"format": "prettier --write src",
"publish": "npm i && npm run build && s registry publish",
"lint": "f2elint scan",
"fix": "f2elint fix",
"test": "jest --config jestconfig.json",
"postinstall": "patch-package"
},
"repository": "[email protected]:devsapp/fc3.git",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@alicloud/fc2": "^2.6.6",
"@alicloud/fc20230330": "^4.1.6",
"@alicloud/pop-core": "^1.8.0",
"@serverless-cd/srm-aliyun-pop-core": "^0.0.7-beta.21",
"@serverless-cd/srm-aliyun-ram20150501": "^0.0.2-beta.9",
"@serverless-cd/srm-aliyun-sls20201230": "0.0.5-beta.3",
"@serverless-devs/diff": "^0.0.3-beta.6",
"@serverless-devs/downloads": "^0.0.6",
"@serverless-devs/load-component": "^0.0.8",
"@serverless-devs/utils": "^0.0.16",
"@serverless-devs/zip": "^0.0.3-beta.8",
"ajv": "^8.17.1",
"aliyun-sdk": "^1.12.10",
"chalk": "^4.1.0",
"crc64-ecma182.js": "^2.0.2",
"decompress": "^4.2.1",
"extract-zip": "^2.0.1",
"fs-extra": "^11.3.0",
"http-proxy": "^1.18.1",
"httpx": "^2.3.2",
"inquirer": "^8.2.5",
"ip": "^1.1.8",
"lodash": "^4.17.21",
"portfinder": "^1.0.32",
"rimraf": "^3.0.2",
"string-random": "^0.1.3",
"temp-dir": "^2.0.0",
"tty-table": "^4.2.3",
"uuid": "^9.0.1",
"uuid-by-string": "^4.0.0"
},
"devDependencies": {
"@serverless-devs/component-interface": "^0.0.6",
"@serverless-devs/logger": "^0.0.5",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
"@types/node": "^20.12.11",
"@vercel/ncc": "^0.38.3",
"f2elint": "^2.2.1",
"jest": "^29.7.0",
"patch-package": "^8.0.0",
"postinstall-prepare": "^2.0.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^4.4.2",
"typescript-json-schema": "^0.65.1"
},
"resolutions": {
"@alicloud/sls20191023": {
"registry": "https://packages.aliyun.com/670e108663cd360abfe4be65/npm/npm-registry/"
}
}
}