compe
Version:
Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it.
86 lines (85 loc) • 1.95 kB
JSON
{
"version": "1.12.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"extract": "node ./src/extractor.js",
"compile": "npm run build && npm run extract"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"bin": {
"compe": "./bin/compe.js"
},
"keywords": [
"cli",
"compe",
"codeforces",
"leetcode",
"atcoder",
"competitive-programming",
"kickstart",
"google-kickstart",
"typescript"
],
"name": "compe",
"author": "Phat Tran",
"module": "dist/compe.esm.js",
"size-limit": [
{
"path": "dist/compe.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/compe.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.5",
"husky": "^7.0.4",
"size-limit": "^7.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^3.9.10"
},
"description": "Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polarity-cf/compe.js.git"
},
"bugs": {
"url": "https://github.com/polarity-cf/compe.js/issues"
},
"homepage": "https://github.com/polarity-cf/compe.js#readme",
"dependencies": {
"minify": "^8.0.3"
}
}