1
0
mirror of synced 2025-12-26 14:00:11 -05:00
Files
blitz/packages/pkg-template/package.json
github-actions[bot] 6eb5bc8987 Version Packages (beta) (#3732)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-08-15 11:38:08 +02:00

40 lines
962 B
JSON

{
"TODO": "REMOVE PRIVATE FIELD",
"name": "template",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "unbuild",
"dev": "watch unbuild src --wait=0.2",
"lint": "eslint . --fix",
"test": "vitest run",
"test-watch": "vitest",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"main": "./dist/index-server.cjs",
"module": "./dist/index-server.mjs",
"browser": "./dist/index-browser.mjs",
"types": "./dist/index-server.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"dist/**"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1"
},
"devDependencies": {
"@blitzjs/config": "2.0.0-beta.1",
"@types/react": "18.0.1",
"@types/react-dom": "17.0.14",
"react": "18.0.0",
"typescript": "^4.5.3",
"unbuild": "0.7.6",
"watch": "1.0.2"
},
"publishConfig": {
"access": "public"
}
}