[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-timings-module.
0

Configure Feed

Select the types of activity you want to include in your feed.

nuxt-timings-module / package.json
1.9 kB 76 lines
1{ 2 "name": "nuxt-timings", 3 "version": "0.2.0", 4 "description": "Timings integration for Nuxt", 5 "keywords": [ 6 "nuxt", 7 "module", 8 "nuxt-module", 9 "timings", 10 "performance" 11 ], 12 "repository": "danielroe/nuxt-timings-module", 13 "license": "MIT", 14 "exports": { 15 ".": "./dist/index.js", 16 "./package.json": "./package.json", 17 "./templates/*": "./dist/templates/*.js", 18 "./dist/runtime": "./dist/runtime.js" 19 }, 20 "main": "./dist/index.js", 21 "types": "./dist/index.d.ts", 22 "files": [ 23 "dist" 24 ], 25 "scripts": { 26 "build": "siroc build", 27 "dev": "nuxt example", 28 "lint": "eslint --ext .js,.ts,.vue", 29 "lint:all": "yarn lint .", 30 "prepare": "husky install && yarn build", 31 "prepublishOnly": "yarn test", 32 "release": "yarn build && yarn test && release-it", 33 "test": "yarn lint && yarn build && yarn jest" 34 }, 35 "dependencies": { 36 "@nuxt/kit": "0.6.4", 37 "chalk": "4.1.2", 38 "consola": "2.15.3", 39 "pathe": "0.3.0" 40 }, 41 "devDependencies": { 42 "@babel/plugin-transform-runtime": "7.18.5", 43 "@babel/preset-env": "7.18.2", 44 "@babel/preset-typescript": "7.17.12", 45 "@nuxt/test-utils": "0.2.2", 46 "@nuxt/types": "2.15.8", 47 "@nuxt/typescript-build": "2.1.0", 48 "@nuxtjs/eslint-config-typescript": "10.0.0", 49 "@release-it/conventional-changelog": "5.0.0", 50 "@types/jest": "28.1.8", 51 "babel-eslint": "latest", 52 "babel-jest": "28.1.3", 53 "eslint": "8.17.0", 54 "husky": "8.0.1", 55 "jest": "28.1.3", 56 "lint-staged": "13.0.2", 57 "nuxt-edge": "2.16.0-27358576.777a4b7f", 58 "release-it": "15.0.0", 59 "siroc": "0.16.0", 60 "ts-loader": "8.3.0" 61 }, 62 "peerDependencies": { 63 "chalk": "^3.0.0 || ^4.0.0", 64 "consola": "^2.15.0", 65 "prettier": "^2.1.2" 66 }, 67 "publishConfig": { 68 "access": "public" 69 }, 70 "engines": { 71 "node": ">=14" 72 }, 73 "volta": { 74 "node": "16.15.1" 75 } 76}