UNPKG

@snowplow/snowtype-core

Version:

A code generator for faster and type-safe Snowplow tracking code

54 lines (53 loc) 1.42 kB
{ "name": "@snowplow/snowtype-core", "version": "0.12.3", "description": "A code generator for faster and type-safe Snowplow tracking code", "author": "Peter Perlepes <peter@snowplowanalytics.com>", "homepage": "https://snowplow.io/", "license": "SEE LICENSE IN LICENSE", "main": "dist/index.js", "files": [ "dist" ], "dependencies": { "@fastify/merge-json-schemas": "^0.2.0", "handlebars": "^4.7.7", "json-pointer": "^0.6.2", "quicktype-core": "^23.0.76" }, "devDependencies": { "@types/jest": "^29.5.8", "@types/json-pointer": "^1.0.32", "@types/node": "^16.9.4", "esbuild": "^0.19.11", "fs-extra": "^11.1.1", "jest": "^29.7.0", "rimraf": "^5.0.5", "ts-jest": "^29.1.1", "tslib": "^2.4", "typescript": "4.9.5" }, "scripts": { "build-templates": "node ./scripts/templates.js", "build:production": "esbuild --bundle --packages=external --platform=node --target=es2022 --outdir=dist --minify src/index.ts", "build": "tsc", "lint:fix": "eslint src --fix", "lint": "eslint src", "prebuild:production": "rimraf ./dist", "prebuild": "npm run build-templates", "pretest": "npm run build-templates", "test": "jest" }, "engines": { "node": ">=18" }, "keywords": [ "snowplow", "analytics", "codegen" ], "types": "dist/index.d.ts", "publishConfig": { "access": "public" } }