UNPKG

jsfast

Version:

Fastjs(jsfast) is a useful, lightweight JavaScript library for any types of project.

73 lines (72 loc) 2.03 kB
{ "name": "jsfast", "version": "1.0.0-beta.25", "description": "Fastjs(jsfast) is a useful, lightweight JavaScript library for any types of project.", "author": "xiaodong2008 <hi@xiaodong.moe>", "bugs": "https://github.com/fastjs-team/core/issues", "funding": "https://github.com/sponsors/xiaodong2008", "main": "index.js", "type": "module", "module": "dist/fastjs.esm-bundler.js", "types": "dist/types/main.d.ts", "unpkg": "dist/fastjs.global.js", "jsdelivr": "dist/fastjs.global.js", "exports": { ".": { "types": { "require": "./dist/types/main.d.ts", "node": "./dist/types/main.d.ts", "default": "./dist/types/main.d.ts" }, "default": { "require": "./index.cjs", "node": "./index.cjs", "default": "./dist/fastjs.esm-bundler.js" } } }, "files": [ "dist", "index.cjs", "index.js", "README.md", "package.json", "LICENSE" ], "scripts": { "dev": "rollup -cw", "build": "npm run rm && rollup -c", "type-check": "tsc --noEmit", "rm": "rm -rf ./dist", "test": "vitest", "test:once": "vitest run", "format": "prettier --check . --ignore-path .prettierignore", "prod": "npm run build && npm run test:once", "update": "ncu --upgrade", "dev:windows": "npm run rm:windows && rollup -cw", "build:windows": "npm run rm:windows && rollup -c", "rm:windows": "if exist dist rmdir /s/q dist", "prod:windows": "npm run build:windows && npm run test", "version": "npm version" }, "repository": { "type": "git", "url": "https://github.com/fastjs-team/core.git" }, "keywords": [ "fastjs", "fastjs-next", "jsfast" ], "homepage": "https://fastjs.dev/", "license": "MIT", "devDependencies": { "@rollup/plugin-replace": "^5.0.5", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", "jsdom": "^24.0.0", "rolldown": "^0.13.2", "rollup": "^4.9.6", "vitest": "^1.5.0" } }