2023-09-12 13:01:12 +00:00
{
2024-03-06 17:24:23 +00:00
"name" : "docsgpt" ,
2024-03-07 13:50:03 +00:00
"version" : "0.3.5" ,
2024-03-06 17:24:23 +00:00
"private" : false ,
2024-03-07 13:50:03 +00:00
"description" : "DocsGPT 🦖 is an innovative open-source tool designed to simplify the retrieval of information from project documentation using advanced GPT models 🤖." ,
2024-03-05 15:45:58 +00:00
"source" : "./src/index.html" ,
"main" : "dist/main.js" ,
"module" : "dist/module.js" ,
"types" : "dist/types.d.ts" ,
"files" : [
"dist" ,
"package.json"
] ,
"@parcel/resolver-default" : {
"packageExports" : true
2024-02-26 15:40:22 +00:00
} ,
2024-03-05 15:45:58 +00:00
"resolution" : {
"styled-components" : "^5"
2024-02-26 15:40:22 +00:00
} ,
2023-09-12 13:01:12 +00:00
"scripts" : {
2024-03-05 15:45:58 +00:00
"build" : "parcel build src/index.ts" ,
"dev" : "parcel" ,
"test" : "jest" ,
"lint" : "eslint" ,
"check" : "tsc --noEmit" ,
"ci" : "yarn build && yarn test && yarn lint && yarn check"
2023-09-12 13:01:12 +00:00
} ,
"dependencies" : {
2024-03-05 15:45:58 +00:00
"@babel/plugin-transform-flow-strip-types" : "^7.23.3" ,
"@parcel/resolver-glob" : "^2.12.0" ,
"@parcel/transformer-svg-react" : "^2.12.0" ,
"@parcel/transformer-typescript-tsc" : "^2.12.0" ,
"@parcel/validator-typescript" : "^2.12.0" ,
2024-02-18 22:44:09 +00:00
"@radix-ui/react-icons" : "^1.3.0" ,
2024-03-05 15:45:58 +00:00
"@types/react" : "^18.2.61" ,
"@types/react-dom" : "^18.2.19" ,
2024-02-18 22:44:09 +00:00
"class-variance-authority" : "^0.7.0" ,
"clsx" : "^2.1.0" ,
2024-03-05 15:45:58 +00:00
"flow-bin" : "^0.229.2" ,
2024-02-28 14:01:36 +00:00
"i" : "^0.3.7" ,
2024-03-05 15:45:58 +00:00
"install" : "^0.13.0" ,
"npm" : "^10.5.0" ,
"parcel" : "^2.12.0" ,
2023-09-12 13:01:12 +00:00
"react" : "^18.2.0" ,
"react-dom" : "^18.2.0" ,
2024-03-05 15:45:58 +00:00
"styled-components" : "^6.1.8"
2023-09-12 13:01:12 +00:00
} ,
"devDependencies" : {
2024-03-05 15:45:58 +00:00
"@babel/core" : "^7.24.0" ,
"@babel/preset-env" : "^7.24.0" ,
"@babel/preset-react" : "^7.23.3" ,
"@parcel/packager-ts" : "^2.12.0" ,
"@parcel/transformer-typescript-types" : "^2.12.0" ,
"babel-loader" : "^8.0.4" ,
"process" : "^0.11.10" ,
"typescript" : "^5.3.3"
2024-03-06 17:24:23 +00:00
} ,
"publishConfig" : {
"access" : "public"
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/arc53/DocsGPT.git"
} ,
"keywords" : [
"docsgpt" ,
"chatbot" ,
"assistant" ,
"ai" ,
"chatdocs" ,
"widget"
] ,
"author" : "Arc53" ,
"license" : "Apache-2.0" ,
"bugs" : {
"url" : "https://github.com/arc53/DocsGPT/issues"
} ,
"homepage" : "https://github.com/arc53/DocsGPT#readme"
2024-02-27 16:01:08 +00:00
}