Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
132
Frontend-Learner/node_modules/youch/package.json
generated
vendored
Normal file
132
Frontend-Learner/node_modules/youch/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
{
|
||||
"name": "youch",
|
||||
"description": "Pretty print JavaScript errors on the Web and the Terminal",
|
||||
"version": "4.1.0-beta.13",
|
||||
"type": "module",
|
||||
"files": [
|
||||
"build",
|
||||
"!build/bin",
|
||||
"!build/examples",
|
||||
"!build/tests"
|
||||
],
|
||||
"main": "build/index.js",
|
||||
"exports": {
|
||||
".": "./build/index.js",
|
||||
"./types": "./build/src/types.js",
|
||||
"./templates/*": "./build/src/templates/*/main.js"
|
||||
},
|
||||
"scripts": {
|
||||
"pretest": "npm run lint",
|
||||
"test": "c8 npm run quick:test",
|
||||
"lint": "eslint .",
|
||||
"format": "prettier --write .",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"precompile": "npm run lint",
|
||||
"copy:assets": "copyfiles --up=1 src/public/**/* build",
|
||||
"compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
|
||||
"build": "npm run compile && npm run copy:assets",
|
||||
"version": "npm run build",
|
||||
"prepublishOnly": "npm run build",
|
||||
"release": "release-it",
|
||||
"quick:test": "node --import=@poppinss/ts-exec --enable-source-maps bin/test.ts"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@adonisjs/eslint-config": "^3.0.0-next.0",
|
||||
"@adonisjs/prettier-config": "^1.4.5",
|
||||
"@adonisjs/tsconfig": "^2.0.0-next.0",
|
||||
"@aws-sdk/client-s3": "^3.922.0",
|
||||
"@aws-sdk/s3-request-presigner": "^3.922.0",
|
||||
"@japa/assert": "^4.1.1",
|
||||
"@japa/expect": "^3.0.6",
|
||||
"@japa/expect-type": "^2.0.3",
|
||||
"@japa/file-system": "^2.3.2",
|
||||
"@japa/runner": "^4.4.0",
|
||||
"@japa/snapshot": "^2.0.9",
|
||||
"@poppinss/exception": "^1.2.2",
|
||||
"@poppinss/ts-exec": "^1.4.1",
|
||||
"@release-it/conventional-changelog": "^10.0.1",
|
||||
"@types/jsdom": "^27.0.0",
|
||||
"@types/node": "^24.10.0",
|
||||
"@types/pg": "^8.15.6",
|
||||
"axios": "^1.13.1",
|
||||
"c8": "^10.1.3",
|
||||
"copyfiles": "^2.4.1",
|
||||
"eslint": "^9.39.0",
|
||||
"flydrive": "^1.3.0",
|
||||
"jsdom": "^27.1.0",
|
||||
"pg": "^8.16.3",
|
||||
"prettier": "^3.6.2",
|
||||
"release-it": "^19.0.5",
|
||||
"tsup": "^8.5.0",
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@poppinss/colors": "^4.1.5",
|
||||
"@poppinss/dumper": "^0.6.5",
|
||||
"@speed-highlight/core": "^1.2.9",
|
||||
"cookie-es": "^2.0.0",
|
||||
"youch-core": "^0.3.3"
|
||||
},
|
||||
"homepage": "https://github.com/poppinss/youch#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/poppinss/youch.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/poppinss/youch/issues"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "Harminder Virk <virk@adonisjs.com>",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"tsup": {
|
||||
"entry": [
|
||||
"index.ts",
|
||||
"src/types.ts",
|
||||
"src/templates/**/*.ts"
|
||||
],
|
||||
"outDir": "./build",
|
||||
"clean": true,
|
||||
"format": "esm",
|
||||
"dts": false,
|
||||
"sourcemap": false,
|
||||
"target": "esnext"
|
||||
},
|
||||
"release-it": {
|
||||
"git": {
|
||||
"requireCleanWorkingDir": true,
|
||||
"requireUpstream": true,
|
||||
"commitMessage": "chore(release): ${version}",
|
||||
"tagAnnotation": "v${version}",
|
||||
"push": true,
|
||||
"tagName": "v${version}"
|
||||
},
|
||||
"github": {
|
||||
"release": true
|
||||
},
|
||||
"npm": {
|
||||
"publish": true,
|
||||
"skipChecks": true
|
||||
},
|
||||
"plugins": {
|
||||
"@release-it/conventional-changelog": {
|
||||
"preset": {
|
||||
"name": "angular"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"c8": {
|
||||
"reporter": [
|
||||
"text",
|
||||
"html"
|
||||
],
|
||||
"exclude": [
|
||||
"tests/**"
|
||||
]
|
||||
},
|
||||
"prettier": "@adonisjs/prettier-config"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue