-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "CDN",
"version": "0.0.1",
"description": "This is a component demo for Serverless Devs Tool ",
"autoInstall": false,
"homepage": "https://www.serverless-devs.com",
"author": "Serverless-Devs",
"contributors": [],
"license": "MIT",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"Serverless",
"Framework",
"Serverless-Devs",
"Serverless-Tool",
"Function Compute"
],
"scripts": {
"start": "npm run watch",
"watch": "tsc -w",
"prebuild": "npm install rimraf --no-save && rimraf package-lock.json && rimraf dist && rimraf node_modules && npm i",
"postbuild": "rimraf -rf package-lock.json && rimraf -rf node_modules && npm install @alicloud/openapi-client",
"build": "esbuild src/index.ts --bundle --log-level=error --minify --platform=node --format=cjs --target=node10.4 --external:@serverless-devs/core --external:@alicloud/openapi-client --outfile=dist/index.js"
},
"dependencies": {
"@alicloud/cdn20180510": "^1.0.12",
"@alicloud/openapi-client": "^0.4.1",
"@alicloud/pop-core": "^1.7.12",
"@serverless-devs/core": "latest"
},
"devDependencies": {
"@types/node": "^14.0.23",
"esbuild": "^0.13.8",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.4.2"
}
}