@snowplow/snowtype-core
Version:
A code generator for faster and type-safe Snowplow tracking code
51 lines (50 loc) • 1.4 kB
JSON
{
"name": "@snowplow/snowtype-core",
"version": "0.17.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.9",
"joi": "^17.6.0",
"json-pointer": "^0.6.2",
"quicktype-core": "23.0.79"
},
"devDependencies": {
"@types/jest": "29.5.8",
"@types/json-pointer": "1.0.34",
"@types/node": "16.18.126",
"esbuild": "0.27.2",
"fs-extra": "11.2.0",
"jest": "29.7.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"typescript": "4.9.5"
},
"scripts": {
"build-templates": "node ./scripts/templates.js",
"build:production": "rimraf ./dist && esbuild --bundle --packages=external --platform=node --target=es2022 --outdir=dist --minify src/index.ts && tsc --project tsconfig.build.json",
"build": "npm run build-templates && tsc",
"lint:fix": "eslint src --fix",
"lint": "eslint src",
"test": "npm run build-templates && jest"
},
"engines": {
"node": ">=24.15.0"
},
"keywords": [
"snowplow",
"analytics",
"codegen"
],
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
}
}