mirror of
https://github.com/alibaba/higress.git
synced 2026-02-20 05:50:49 +08:00
27 lines
675 B
JSON
27 lines
675 B
JSON
{
|
|
"name": "custom-response",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "node tests",
|
|
"asbuild:debug": "asc assembly/index.ts --target debug",
|
|
"asbuild:release": "asc assembly/index.ts --target release",
|
|
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
|
|
"start": "npx serve ."
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"assemblyscript": "^0.27.29",
|
|
"assemblyscript-json": "^1.1.0",
|
|
"@higress/wasm-assemblyscript": "^0.0.4"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./build/release.js",
|
|
"types": "./build/release.d.ts"
|
|
}
|
|
}
|
|
} |