- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "@web3-storage/multipart-parser",
|
|
"version": "1.0.0",
|
|
"description": "A simple multipart/form-data parser to use with ReadableStreams",
|
|
"main": "./cjs/src/index.js",
|
|
"types": "./types/index.d.ts",
|
|
"scripts": {
|
|
"build": "npm run build:js && npm run build:types",
|
|
"build:js": "ipjs build --main && npm run build:copy",
|
|
"build:copy": "cp -a tsconfig.json src test dist/ ",
|
|
"build:types": "npm run build:copy && cd dist && tsc --build",
|
|
"test": "playwright-test -r tape -b webkit test/*.spec.js",
|
|
"lint": "standard"
|
|
},
|
|
"author": "vasco-santos",
|
|
"license": "(Apache-2.0 AND MIT)",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/web3-storage/multipart-parser.git"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"dist"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"ipjs": "^5.0.3",
|
|
"playwright-test": "^6.0.0",
|
|
"standard": "^16.0.3",
|
|
"tape": "^5.2.2",
|
|
"typescript": "^4.3.5",
|
|
"web-streams-polyfill": "^3.1.0"
|
|
},
|
|
"browser": {
|
|
".": "./cjs/src/index.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"browser": "./esm/src/index.js",
|
|
"require": "./cjs/src/index.js",
|
|
"import": "./esm/src/index.js"
|
|
}
|
|
}
|
|
} |