@forest-js/core
Version:
A tiny, functional DOM engine with explicit update and real DOM.
71 lines (70 loc) • 1.89 kB
JSON
{
"name": "@forest-js/core",
"version": "1.2.3",
"description": "A tiny, functional DOM engine with explicit update and real DOM.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./forest": {
"import": "./dist/forest.js",
"types": "./dist/forest.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./router": {
"import": "./dist/router/index.js",
"types": "./dist/router/index.d.ts"
},
"./store": {
"import": "./dist/store/index.js",
"types": "./dist/store/index.d.ts"
},
"./utilities": {
"import": "./dist/utilities/index.js",
"types": "./dist/utilities/index.d.ts"
}
},
"type": "module",
"files": [
"dist",
"readme.md",
"LICENSE"
],
"scripts": {
"clean": "rmdir /s /q dist && del /f /q tsconfig.tsbuildinfo",
"build": "npm run clean && tsc && tsc-alias",
"test:runtime": "jest",
"test:types": "tsc -p tsconfig.test.json --noEmit",
"test": "npm run test:runtime && npm run test:types",
"npm-publish": "npm publish"
},
"homepage": "https://github.com/GrangbelrLurain/forest-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/GrangbelrLurain/forest-js"
},
"documentation": "https://grangbelrlurain.github.io/forest-js/",
"bugs": {
"url": "https://github.com/GrangbelrLurain/forest-js/issues"
},
"keywords": [
"dom",
"engine",
"functional",
"minimal",
"ui",
"reactive",
"real-dom"
],
"author": "lurain grangbelr <luraingrangbelr@gmail.com>",
"license": "MIT",
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.5"
}
}