compomint
Version:
A lightweight JavaScript component engine for building web applications with a focus on component-based architecture and template system.
82 lines (81 loc) • 2.32 kB
JSON
{
"name": "compomint",
"version": "1.1.4",
"description": "A lightweight JavaScript component engine for building web applications with a focus on component-based architecture and template system.",
"main": "dist/compomint.umd.js",
"module": "dist/compomint.esm.js",
"types": "dist/compomint.d.ts",
"jsdelivr": "dist/compomint.umd.min.js",
"unpkg": "dist/compomint.umd.min.js",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/compomint.esm.js",
"require": "./dist/compomint.umd.js",
"types": "./dist/compomint.d.ts"
}
},
"scripts": {
"build:types": "npx tsc",
"build:bundle": "rollup -c",
"build": "npm run build:types && npm run build:bundle",
"prepare": "npm run build",
"test": "jest --clearCache && jest",
"test:watch": "jest --watch",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/kurukona/compomint.git"
},
"keywords": [
"template-engine",
"template",
"component-based",
"component",
"lightweight",
"framework",
"web-application",
"spa",
"templating",
"frontend",
"ui",
"dom",
"compomint"
],
"author": "CHOI SUNGHO",
"homepage": "https://compomint.dev/",
"bugs": {
"url": "https://github.com/kurukona/compomint/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.27.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"conventional-changelog-conventionalcommits": "^9.0.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^24.2.4",
"ts-jest": "^29.3.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}