UNPKG

kriti-lang

Version:

A TypeScript implementation of the Kriti templating language

69 lines (68 loc) 1.68 kB
{ "name": "kriti-lang", "version": "1.0.0", "type": "module", "description": "A TypeScript implementation of the Kriti templating language", "main": "dist/index.cjs", "module": "dist/index.esm.js", "browser": "dist/index.umd.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.js", "require": "./dist/index.cjs", "browser": "./dist/index.umd.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "rollup -c", "build:watch": "rollup -c -w", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build", "test": "jest", "test:watch": "jest --watch", "dev": "npm run build:watch", "prepack": "npm run build" }, "keywords": [ "kriti", "template", "templating", "json", "transform", "typescript" ], "author": "abdullah2993", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/abdullah2993/kriti-lang.git" }, "bugs": { "url": "https://github.com/abdullah2993/kriti-lang/issues" }, "homepage": "https://github.com/abdullah2993/kriti-lang#readme", "engines": { "node": ">=14.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^28.0.6", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.1.4", "@types/jest": "^30.0.0", "jest": "^30.0.5", "rollup": "^4.46.2", "rollup-plugin-dts": "^6.2.1", "ts-jest": "^29.4.1", "tslib": "^2.8.1", "tsx": "^4.20.3", "typescript": "^5.9.2" } }