zioinfo-mail/app/node_modules/@remix-run/web-form-data/package.json
DESKTOP-TKLFCPR\ython 11c670f2a0 refactor: 101.79.17.164 → zioinfo.co.kr 전체 도메인 변환 + Manager UI 배포
- 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>
2026-05-31 10:09:17 +09:00

74 lines
1.9 KiB
JSON

{
"name": "@remix-run/web-form-data",
"version": "3.1.0",
"description": "Web API compatible Form Data implementation",
"files": [
"src",
"dist/src",
"License.md",
"Readme.md"
],
"keywords": [
"formdata",
"typed"
],
"type": "module",
"module": "./src/lib.js",
"main": "./dist/src/lib.node.cjs",
"types": "./dist/src/lib.d.ts",
"browser": {
"./src/lib.node.js": "./src/lib.js"
},
"exports": {
".": {
"types": "./dist/src/lib.d.ts",
"browser": {
"require": "./dist/src/lib.cjs",
"import": "./src/lib.js"
},
"require": "./dist/src/lib.node.cjs",
"import": "./src/lib.node.js"
}
},
"dependencies": {
"web-encoding": "1.1.5"
},
"author": "Irakli Gozalishvili <dev@gozala.io> (https://gozala.io)",
"repository": "https://github.com/remix-run/web-std-io",
"license": "MIT",
"devDependencies": {
"@remix-run/web-blob": "^3.1.0",
"@remix-run/web-fetch": "^4.4.0",
"@remix-run/web-file": "^3.1.0",
"@types/node": "15.0.2",
"git-validate": "2.2.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"playwright-test": "^7.2.0",
"prettier": "^2.3.0",
"rimraf": "3.0.2",
"rollup": "2.47.0",
"rollup-plugin-multi-input": "1.2.0",
"typescript": "^4.4.4",
"uvu": "0.5.2"
},
"scripts": {
"typecheck": "tsc",
"build": "npm run build:cjs && npm run build:types",
"build:cjs": "rollup --config rollup.config.js",
"build:types": "tsc --build",
"prepare": "npm run build",
"test:es": "uvu test all.spec.js",
"test:web": "playwright-test -r uvu test/web.spec.js",
"test:cjs": "rimraf dist && npm run build && node dist/test/all.spec.cjs",
"test": "npm run test:es && npm run test:cjs",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --no-semi --write",
"git add"
]
}
}