UNPKG

narrative-studio-sdk

Version:

Narrative SDK for building apps on the Narrative Studio

51 lines (50 loc) 1.2 kB
{ "name": "narrative-studio-sdk", "version": "0.9.5", "description": "Narrative SDK for building apps on the Narrative Studio", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", "default": "./dist/esm/index.js" } }, "keywords": [ "narrative", "sdk" ], "files": [ "dist" ], "scripts": { "build": "npm run build:esm && npm run build:cjs", "build:esm": "tsc --project tsconfig.json", "build:cjs": "tsc --project tsconfig.cjs.json", "type-check": "tsc --noEmit", "prepare": "npm run build", "test": "jest" }, "author": { "name": "Narrative", "url": "https://narrative.tech" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/XSpecs/narrative-sdk.git" }, "devDependencies": { "@types/jest": "^29.5.14", "jest": "^29.7.0", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "peerDependencies": { "typescript": "^5.3.3" } }