72 lines
2.2 KiB
JSON
72 lines
2.2 KiB
JSON
{
|
|
"name": "@pojagi/http-server-drf",
|
|
"version": "0.1.0",
|
|
"author": "Tom Brennan",
|
|
"description": "TypeSpec HTTP server code generator for Django Rest Framework",
|
|
"homepage": "https://git.pojagi.org/tjb1982/http-server-drf",
|
|
"readme": "https://git.pojagi.org/tjb1982/http-server-drf/src/branch/main/README.md",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://git.pojagi.org/tjb1982/http-server-drf"
|
|
},
|
|
"bugs": {
|
|
"url": "https://git.pojagi.org/tjb1982/http-server-drf/issues"
|
|
},
|
|
"keywords": [
|
|
"typespec",
|
|
"http",
|
|
"server",
|
|
"javascript",
|
|
"typescript"
|
|
],
|
|
"type": "module",
|
|
"main": "dist/src/index.js",
|
|
"exports": {
|
|
".": "./dist/src/index.js",
|
|
"./testing": "./dist/src/testing/index.js"
|
|
},
|
|
"bin": {
|
|
"hsj-scaffold": "./dist/src/scripts/scaffold/bin.mjs"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf ./dist ./temp",
|
|
"build": "npm run build:helpers && npm run build:src",
|
|
"build:src": "tsc -p ./tsconfig.json",
|
|
"build:helpers": "tsx ./build-helpers.ts",
|
|
"watch": "tsc -p . --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest -w",
|
|
"test:ui": "vitest --ui",
|
|
"test:ci": "vitest run --coverage --reporter=junit --reporter=default",
|
|
"lint": "eslint . --max-warnings=0",
|
|
"lint:fix": "eslint . --fix",
|
|
"regen-docs": "echo Doc generation disabled for this package."
|
|
},
|
|
"peerDependencies": {
|
|
"@typespec/compiler": "latest",
|
|
"@typespec/http": "latest",
|
|
"@typespec/openapi3": "latest"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@typespec/openapi3": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"prettier": "~3.4.2",
|
|
"yaml": "~2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "~22.10.10",
|
|
"@typespec/compiler": "latest",
|
|
"@typespec/http": "latest",
|
|
"@typespec/openapi3": "latest",
|
|
"@vitest/coverage-v8": "^3.0.4",
|
|
"@vitest/ui": "^3.0.3",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "~5.7.3",
|
|
"vitest": "^3.0.5"
|
|
}
|
|
}
|