knowmax-quest-utils
Version:
Utilities for creating a Knowmax Quest client.
55 lines (54 loc) • 1.44 kB
JSON
{
"name": "knowmax-quest-utils",
"version": "3.11.0",
"description": "Utilities for creating a Knowmax Quest client.",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"build": "rimraf ./dist && npm run build:types && npm run build:cjs && npm run build:esm && npm run postbuild",
"build:types": "tsc --project tsconfig.types.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"postbuild": "echo {\"type\":\"commonjs\"} > dist/cjs/package.json",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"knowmax",
"quest",
"utils"
],
"author": "Knowmax BV",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^30.2.0",
"jest": "^30.2.0",
"rimraf": "6.1.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "5.9.3"
},
"dependencies": {
"@knowmax/http-utils": "^1.0.0",
"knowmax-quest-types": "^3.9.0"
}
}