Files
dealplustech/node_modules/regex-utilities/package.json
Kunthawat Greethong 443c3377e2 refactor: Move Astro to root, use PORT env (default 80), allow all hosts
- Move Astro files from dealplustech-astro/ to project root
- Update Dockerfile: PORT environment variable (default 80)
- Add vite.config.ts with allowedHosts: true
- Matches nixpacks behavior for Easypanel deployment
- No hardcoded ports or domains
2026-03-03 11:40:50 +07:00

36 lines
827 B
JSON

{
"name": "regex-utilities",
"version": "2.3.0",
"description": "Tiny helpers for processing regex syntax",
"author": "Steven Levithan",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
}
},
"types": "./types/index.d.ts",
"scripts": {
"types": "tsc src/index.js --rootDir src --declaration --allowJs --emitDeclarationOnly --outdir types",
"prebuild": "rm -rf types/*",
"build": "npm run types",
"pretest": "npm run build",
"test": "jasmine",
"prepare": "npm test"
},
"files": [
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/slevithan/regex-utilities.git"
},
"devDependencies": {
"jasmine": "^5.2.0",
"typescript": "5.5.4"
}
}