field-service-agent
Version:
Field Service AI Agent - NPM package for integrating AI-powered field service management into mobile apps
62 lines (61 loc) • 1.47 kB
JSON
{
"name": "field-service-agent",
"version": "1.0.13",
"description": "Field Service AI Agent - NPM package for integrating AI-powered field service management into mobile apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "cd dev-page && npm install && npm run dev",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"link:local": "npm run build && npm link",
"unlink:local": "npm unlink"
},
"repository": {
"type": "git",
"url": "https://github.com/field-service/agent-package.git"
},
"keywords": [
"field-service",
"ai",
"agent",
"voice-assistant",
"mobile",
"sdk",
"natural-language",
"gpt"
],
"author": "Field Service Team",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"field-service-sdk": "^3.0.5"
}
}