This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a61e5e
commit c3823a4
Showing
1 changed file
with
84 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,86 @@ | ||
{ | ||
"name": "@knighttower/type-check-js", | ||
"version": "4.1.3", | ||
"type": "module", | ||
"description": "TypeCheck JS", | ||
"main": "index.cjs", | ||
"module": "index.js", | ||
"unpkg": "dist/browser/TypeCheck.js", | ||
"jsdelivr": "dist/browser/TypeCheck.js", | ||
"browser": "dist/browser/TypeCheck.js", | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"src", | ||
"index.js", | ||
"index.cjs" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./index.js", | ||
"require": "./index.cjs" | ||
}, | ||
"./dist/*": "./dist/*" | ||
"name": "@knighttower/type-check-js", | ||
"version": "4.1.5", | ||
"type": "module", | ||
"description": "TypeCheck JS", | ||
"main": "index.cjs", | ||
"module": "index.js", | ||
"unpkg": "dist/browser/TypeCheck.js", | ||
"jsdelivr": "dist/browser/TypeCheck.js", | ||
"browser": "dist/browser/TypeCheck.js", | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"src", | ||
"index.js", | ||
"index.cjs" | ||
], | ||
"exports": { | ||
".": { | ||
"import": "./index.js", | ||
"require": "./index.cjs" | ||
}, | ||
"keywords": [ | ||
"Utility", | ||
"Vue", | ||
"react", | ||
"library", | ||
"plugin", | ||
"URL", | ||
"Vue 2", | ||
"Vue 3", | ||
"javascript", | ||
"DOM", | ||
"functions", | ||
"helper", | ||
"knighttower", | ||
"typeCheck", | ||
"type checking" | ||
], | ||
"scripts": { | ||
"production": "npm run build", | ||
"build": "npm run webpack && npm run rollup && npm run buildExports && npm run bumpVersion", | ||
"fixIndexFormat": "prettier --config .prettierrc.json --write ./index.js && prettier --config .prettierrc.json --write ./index.cjs", | ||
"bumpVersion": "node ./node_modules/@knighttower/js-utility-functions/nodeUtils/BumpVersion.cjs", | ||
"buildExports": "node ./node_modules/@knighttower/js-utility-functions/nodeUtils/BuildExports.js --file ./src/TypeCheck.js && node ./node_modules/@knighttower/js-utility-functions/nodeUtils/BuildExports.js --file ./dist/cjs/TypeCheck.cjs --type=cjs", | ||
"rollup": "rollup -c ./node_modules/@knighttower/js-utility-functions/nodeUtils/rollup.config.cjs", | ||
"webpack": "webpack --mode production --config ./node_modules/@knighttower/js-utility-functions/nodeUtils/webpack.config.cjs", | ||
"dev": "webpack --mode development", | ||
"watch": "webpack --mode development --watch", | ||
"test": "npm run format && npm run eslint && vitest", | ||
"format": "prettier --config .prettierrc.json --write ./src", | ||
"format-check": "prettier --config .prettierrc.json --check ./src", | ||
"eslint": "eslint -c .eslintrc.json --fix ./src --ext .js,.cjs,.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/knighttower/typeCheckJs.git" | ||
}, | ||
"dependencies": { | ||
"@knighttower/js-utility-functions": "^3.4.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.23.5", | ||
"@babel/plugin-transform-object-assign": "^7.23.3", | ||
"@babel/preset-env": "^7.23.5", | ||
"@rollup/plugin-babel": "^6.0.4", | ||
"@rollup/plugin-buble": "^1.0.3", | ||
"@rollup/plugin-commonjs": "^25.0.7", | ||
"@rollup/plugin-node-resolve": "^15.2.3", | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"compression-webpack-plugin": "^10.0.0", | ||
"eslint": "^8.54.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.1", | ||
"jsdom": "^22.1.0", | ||
"prettier": "^3.1.0", | ||
"pretty-quick": "^3.1.3", | ||
"rollup": "^4.6.0", | ||
"terser": "^5.24.0", | ||
"vitest": "^0.34.6", | ||
"webpack": "^5.89.0", | ||
"webpack-cli": "^5.1.4" | ||
} | ||
} | ||
"./dist/*": "./dist/*" | ||
}, | ||
"keywords": [ | ||
"Utility", | ||
"Vue", | ||
"react", | ||
"library", | ||
"plugin", | ||
"URL", | ||
"Vue 2", | ||
"Vue 3", | ||
"javascript", | ||
"DOM", | ||
"functions", | ||
"helper", | ||
"knighttower", | ||
"typeCheck", | ||
"type checking" | ||
], | ||
"scripts": { | ||
"production": "npm run build", | ||
"build": "npm run webpack && npm run rollup && npm run buildExports && npm run bumpVersion", | ||
"fixIndexFormat": "prettier --config .prettierrc.json --write ./index.js && prettier --config .prettierrc.json --write ./index.cjs", | ||
"bumpVersion": "node ./node_modules/@knighttower/js-utility-functions/nodeUtils/BumpVersion.cjs --exe", | ||
"buildExports": "node ./node_modules/@knighttower/js-utility-functions/nodeUtils/BuildExports.js --file ./src/TypeCheck.js && node ./node_modules/@knighttower/js-utility-functions/nodeUtils/BuildExports.js --file ./dist/cjs/TypeCheck.cjs --type=cjs", | ||
"rollup": "rollup -c ./node_modules/@knighttower/js-utility-functions/nodeUtils/rollup.config.cjs", | ||
"webpack": "webpack --mode production --config ./node_modules/@knighttower/js-utility-functions/nodeUtils/webpack.config.cjs", | ||
"dev": "webpack --mode development", | ||
"watch": "webpack --mode development --watch", | ||
"test": "npm run format && npm run eslint && vitest", | ||
"format": "prettier --config .prettierrc.json --write ./src", | ||
"format-check": "prettier --config .prettierrc.json --check ./src", | ||
"eslint": "eslint -c .eslintrc.json --fix ./src --ext .js,.cjs,.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/knighttower/typeCheckJs.git" | ||
}, | ||
"dependencies": { | ||
"@knighttower/js-utility-functions": "^3.4.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.23.5", | ||
"@babel/plugin-transform-object-assign": "^7.23.3", | ||
"@babel/preset-env": "^7.23.5", | ||
"@rollup/plugin-babel": "^6.0.4", | ||
"@rollup/plugin-buble": "^1.0.3", | ||
"@rollup/plugin-commonjs": "^25.0.7", | ||
"@rollup/plugin-node-resolve": "^15.2.3", | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"compression-webpack-plugin": "^10.0.0", | ||
"eslint": "^8.54.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.1", | ||
"jsdom": "^22.1.0", | ||
"prettier": "^3.1.0", | ||
"pretty-quick": "^3.1.3", | ||
"rollup": "^4.6.0", | ||
"terser": "^5.24.0", | ||
"vitest": "^0.34.6", | ||
"webpack": "^5.89.0", | ||
"webpack-cli": "^5.1.4" | ||
} | ||
} |