forked from type-challenges/type-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "type-challenges",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"repository": "https://github.com/antfu/type-challenges.git",
"scripts": {
"readme": "esno ./scripts/readme.ts",
"build": "esno ./scripts/build.ts",
"generate": "esno ./scripts/generate-play.ts",
"lint": "eslint .",
"translate": "esno ./scripts/translate-cli.ts",
"utils:release": "pnpm -C utils release"
},
"dependencies": {
"esno": "^0.16.3",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"lz-string": "^1.4.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@type-challenges/utils": "workspace:*",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/lz-string": "^1.3.34",
"@types/node": "^18.0.0",
"@types/prompts": "^2.4.2",
"eslint": "^8.18.0",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"typescript": "^4.7.4",
"utility-types": "^3.10.0"
},
"eslintConfig": {
"extends": "@antfu/eslint-config-ts",
"rules": {
"import/first": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/ban-ts-comment": "off",
"no-use-before-define": "off",
"no-unused-expressions": "off",
"prefer-const": "off",
"no-alert": "off",
"@typescript-eslint/consistent-type-definitions": "off"
}
}
}