arc-vite
Version:
Declaratively bundle and execute code specific to your users ARC and Vite.
81 lines (80 loc) • 2.32 kB
JSON
{
"name": "arc-vite",
"version": "1.2.6",
"description": "Declaratively bundle and execute code specific to your users ARC and Vite.",
"keywords": [
"ARC",
"arc-server",
"vite"
],
"homepage": "https://github.com/marko-js/arc-vite",
"bugs": "https://github.com/marko-js/arc-vite/issues",
"repository": {
"type": "git",
"url": "https://github.com/marko-js/arc-vite"
},
"license": "MIT",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"files": [
"dist",
"!**/tests",
"!**/*.tsbuildinfo"
],
"scripts": {
"@ci:test": "c8 npm test",
"build": "tsx build.ts && tsc -b",
"change": "changeset add",
"clean": "rm -rf .cache coverage dist node_modules/.cache",
"format": "eslint -f unix --fix .; prettier . --write --log-level=warn",
"lint": "npm run build && eslint -f unix && prettier . -l --log-level=warn",
"prepare": "husky install",
"release": "npm run build && changeset publish",
"test": "MARKO_DEBUG=true tsx --test-reporter=spec --test ./src/tests/*.test.ts",
"version": "changeset version && npm i --package-lock-only"
},
"dependencies": {
"arc-resolver": "^3.0.0",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"htmlparser2": "^10.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.31.0",
"@marko/compiler": "^5.39.29",
"@marko/vite": "^5.2.1",
"@playwright/test": "^1.54.1",
"@types/estree": "^1.0.8",
"@types/node": "^24.0.14",
"@types/serve-handler": "^6.1.4",
"c8": "^10.1.3",
"eslint": "^9.31.0",
"eslint-formatter-unix": "^8.40.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"marko": "^5.37.41",
"playwright": "^1.54.1",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.18",
"serve-handler": "^6.1.6",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vite": "^7.0.5"
},
"peerDependencies": {
"arc-server": "^3.0.2",
"vite": "4 - 7"
}
}