UNPKG

knowmax-quest-types

Version:

Contains type definitions for communicating with Knowmax Quest.

49 lines 1.34 kB
{ "name": "knowmax-quest-types", "version": "3.2.4", "description": "Contains type definitions for communicating with Knowmax Quest.", "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" ], "author": "Knowmax BV", "license": "MIT", "devDependencies": { "@jest/globals": "^30.0.3", "jest": "^30.0.3", "rimraf": "6.0.1", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typescript": "5.8.3" } }