js-simpler
Version:
一个轻量级且模块化的JavaScript实用工具库
73 lines • 2.04 kB
JSON
{
"name": "js-simpler",
"description": "一个轻量级且模块化的JavaScript实用工具库",
"homepage": "https://github.com/linpengteng/js-simpler#readme",
"version": "1.7.0",
"license": "MIT",
"author": "lin pengteng <china.linpengteng@gmail.com>",
"main": "./dist/index.simpler.cjs",
"module": "./dist/index.simpler.mjs",
"browser": "./dist/index.browser.js",
"types": "./dist/index.d.ts",
"keywords": [
"js-fast",
"js-helper",
"js-simpler"
],
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.simpler.mjs",
"require": "./dist/index.simpler.cjs",
"browser": "./dist/index.browser.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/linpengteng/js-simpler.git"
},
"bugs": {
"url": "https://github.com/linpengteng/js-simpler/issues"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/config-inspector": "^0.5.6",
"@eslint/js": "^9.16.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@rollup/pluginutils": "^5.1.3",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-plugin-vue": "^9.32.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"rollup": "^4.27.4",
"rollup-plugin-dts": "^6.1.1",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8"
},
"scripts": {
"test": "jest",
"build": "shx rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript",
"eslint": "npx eslint --fix --quiet src/**"
}
}