UNPKG

@hotwired/turbo

Version:

The speed of a single-page web application without having to write any JavaScript

74 lines (73 loc) 2.21 kB
{ "name": "@hotwired/turbo", "version": "7.2.4", "description": "The speed of a single-page web application without having to write any JavaScript", "module": "dist/turbo.es2017-esm.js", "main": "dist/turbo.es2017-umd.js", "types": "dist/types/index.d.ts", "files": [ "dist/*.js", "dist/*.js.map", "dist/types/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/hotwired/turbo.git" }, "keywords": [ "hotwire", "turbo", "browser", "pushstate" ], "author": "37signals LLC", "contributors": [ "Jeffrey Hardy <jeff@basecamp.com>", "Javan Makhmali <javan@javan.us>", "Sam Stephenson <sstephenson@gmail.com>" ], "license": "MIT", "bugs": { "url": "https://github.com/hotwired/turbo/issues" }, "homepage": "https://turbo.hotwired.dev", "publishConfig": { "access": "public" }, "devDependencies": { "@playwright/test": "^1.22.2", "@rollup/plugin-node-resolve": "13.1.3", "@rollup/plugin-typescript": "^8.5.0", "@types/multer": "^1.4.5", "@typescript-eslint/eslint-plugin": "^5.20.0", "@typescript-eslint/parser": "^5.20.0", "arg": "^5.0.1", "chai": "~4.3.4", "eslint": "^8.13.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.0.0", "intern": "^4.9.0", "multer": "^1.4.2", "prettier": "2.6.2", "rollup": "^2.35.1", "tslib": "^2.4.0", "typescript": "^4.8.2" }, "scripts": { "clean": "rm -fr dist", "clean:win": "rmdir /s /q dist", "build": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types && rollup -c", "build:win": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types & rollup -c", "watch": "rollup -wc", "start": "node src/tests/runner.js serveOnly", "test": "yarn test:unit && yarn test:browser", "test:browser": "playwright test", "test:unit": "NODE_OPTIONS=--inspect node src/tests/runner.js", "test:unit:win": "SET NODE_OPTIONS=--inspect & node src/tests/runner.js", "release": "yarn build && npm publish", "lint": "eslint . --ext .ts" }, "engines": { "node": ">= 14" } }