type-challenges/package.json
2020-12-09 13:35:42 +08:00

43 lines
1.2 KiB
JSON

{
"name": "type-challenges",
"private": true,
"version": "0.0.0",
"repository": "https://github.com/antfu/type-challenges.git",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"scripts": {
"readme": "esno ./scripts/readme.ts",
"build": "esno ./scripts/build.ts",
"translate": "esno ./scripts/translate-cli.ts",
"utils:release": "pnpm -C utils release"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.4.3",
"@type-challenges/utils": "workspace:*",
"@types/fs-extra": "^9.0.4",
"@types/js-yaml": "^3.12.5",
"@types/lz-string": "^1.3.34",
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"typescript": "^4.1.2",
"utility-types": "^3.10.0"
},
"dependencies": {
"esno": "^0.3.0",
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"js-yaml": "^3.14.1",
"lz-string": "^1.4.4"
},
"eslintConfig": {
"extends": "@antfu/eslint-config-ts",
"rules": {
"import/first": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off"
}
}
}