customerio-gist-web
Version:
Build beautiful in-app flows with no code and deliver them instantly to your app. http://customer.io
92 lines (91 loc) • 2.5 kB
JSON
{
"name": "customerio-gist-web",
"version": "3.23.3",
"description": "Build beautiful in-app flows with no code and deliver them instantly to your app. http://customer.io",
"private": false,
"files": [
"dist"
],
"scripts": {
"start": "npm-run-all --parallel watch:server watch:build",
"build:prod": "webpack --mode=production --output-filename gist.min.js && npm run build:types",
"build:types": "tsc --project tsconfig.build.json",
"watch:build": "webpack --watch --progress --mode=development",
"watch:server": "http-server",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\""
},
"types": "./dist/types/index.d.ts",
"browser": "dist/gist.min.js",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/gist.min.js",
"import": "./dist/gist.min.js"
},
"author": "Customer.io (https://customer.io)",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^15.11.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@customerio/jist": "^0.1.6",
"uuid": "^14.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/customerio/gist-web.git"
},
"keywords": [
"gist",
"in-app",
"messages",
"product",
"messaging",
"in-product",
"gist.build",
"customerio"
],
"bugs": {
"url": "https://github.com/customerio/gist-web/issues"
},
"homepage": "https://github.com/customerio/gist-web",
"overrides": {
"serialize-javascript": "7.0.3",
"vite": "7.3.2",
"lodash": "4.18.1",
"flatted": "3.4.2",
"@eslint/plugin-kit": "0.3.4",
"follow-redirects": "1.16.0",
"yaml": "2.8.3"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
}
}