dome-embedded-app-sdk
Version:
Build Dome cards and document viewers with a single SDK. Cards let you extend a dome with custom functionality, while viewers let you render and edit documents inside Dome.
57 lines (56 loc) • 1.87 kB
JSON
{
"name": "dome-embedded-app-sdk",
"version": "0.5.0",
"source": "src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"docs"
],
"scripts": {
"clean": "node ./scripts/clean-dist.mjs",
"build:tsc": "tsc --emitDeclarationOnly",
"build:webpack": "webpack --config webpack.config.ts",
"build:webpack:experimental": "webpack --config webpack.config.ts --env experimental",
"build": "npm run clean && npm run build:tsc && npm run build:webpack",
"build:experimental": "npm run clean && npm run build:tsc && npm run build:webpack:experimental",
"release": "npm run build && npm publish",
"release:experimental": "npm run build:experimental && npm publish --tag experimental",
"version:patch": "npm version patch && git push && git push --tags && npm run release",
"version:minor": "npm version minor && git push && git push --tags && npm run release",
"version:major": "npm version major && git push && git push --tags && npm run release",
"version:experimental": "npm version prerelease --preid=experimental && git push && git push --tags && git push origin HEAD:experimental && npm run release:experimental",
"test-pack": "npm pack --dry-run",
"watch": "webpack --watch"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"dome",
"dome-sdk"
],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cbor-x": "^1.6.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/webpack": "^5.28.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"webpack-cli": "^5.1.4"
}
}