dynamic-loading-script
Version:
Dynamic script loading.
40 lines • 906 B
JSON
{
"name": "dynamic-loading-script",
"version": "1.0.9",
"description": "Dynamic script loading.",
"scripts": {
"build": "tsup --format cjs,esm --dts-resolve --clean --sourcemap --target esnext index.ts",
"dev": "tsup --format cjs,esm --dts-resolve --clean --sourcemap --watch --target es2018 index.ts",
"jest": "jest"
},
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"dynamic",
"loader",
"script",
"esm"
],
"author": "guoshuangyang@qq.com",
"repository": {
"type": "git",
"url": "https://github.com/guoshuangyang/dynamic-loading-script"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.5.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"jest": {
"testEnvironment": "jsdom"
}
}