sigment
Version:
A lightweight reactive JavaScript framework built with signals and vanilla JS — no virtual DOM, no JSX, no transpilation.
47 lines (46 loc) • 1.16 kB
JSON
{
"name": "sigment",
"version": "1.1.2",
"description": "A lightweight reactive JavaScript framework built with signals and vanilla JS — no virtual DOM, no JSX, no transpilation.",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wappaa/jv.git"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"require": "./throw-on-require.js"
}
},
"type": "module",
"types": "./types/index.d.ts",
"author": "wappaa",
"license": "MIT",
"files": [
"dist",
"types",
"throw-on-require.js"
],
"scripts": {
"build": "esbuild index.js --bundle --format=esm --minify --keep-names --target=es2020,chrome90,firefox88,safari15 --outfile=dist/index.js",
"prepare": "npm run build"
},
"devDependencies": {
"esbuild": "^0.25.2"
},
"engines": {
"node": ">=14.8.0"
},
"keywords": [
"Javascript",
"Vanilla",
"Reactive",
"Sigment"
],
"bugs": {
"url": "https://github.com/wappaa/jv/issues"
},
"homepage": "https://github.com/wappaa/jv#readme"
}