mithril-materialized
Version:
A materialize library for mithril.
65 lines (64 loc) • 2.22 kB
JSON
{
"name": "mithril-materialized",
"version": "1.4.2",
"description": "A materialize library for mithril.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"./modern": "./dist/index.modern.js",
"./esm": "./dist/index.esm.js",
"./umd": "./dist/index.umd.js",
"./index.css": "./dist/index.css"
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "microbundle build ./src/index.ts --external mithril,materialize-css",
"dev": "microbundle watch ./src/index.ts --external mithril,materialize-css",
"start": "npm run dev",
"clean": "rimraf dist node_modules/.cache",
"link:old": "pnpm link",
"typedoc": "typedoc --out ../../docs/typedoc src",
"build:domain": "npm run clean && npm run build && typedoc --out ../../docs/typedoc src",
"dry-run": "npm publish --dry-run",
"patch-release": "npm run clean && npm run build && npm version patch --force -m \"Patch release\" && npm publish && git push --follow-tags",
"minor-release": "npm run clean && npm run build && npm version minor --force -m \"Minor release\" && npm publish && git push --follow-tags",
"major-release": "npm run clean && npm run build && npm version major --force -m \"Major release\" && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git://github.com/erikvullings/mithril-materialized.git"
},
"keywords": [
"mithril",
"materialize-css"
],
"author": "Erik Vullings <erik.vullings@gmail.com> (http://www.tno.nl)",
"license": "MIT",
"dependencies": {
"materialize-css": "^1.0.0",
"mithril": "^2.3.0"
},
"devDependencies": {
"@types/materialize-css": "^1.0.14",
"@types/mithril": "^2.2.7",
"js-yaml": "^4.1.0",
"microbundle": "^0.15.1",
"rimraf": "^6.0.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
}
}