forked from type-challenges/type-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "type-challenges",
"private": true,
"version": "0.0.0",
"repository": "https://github.com/antfu/type-challenges.git",
"author": "Anthony Fu <[email protected]>",
"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.12.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": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"typescript": "^4.5.2",
"utility-types": "^3.10.0"
},
"dependencies": {
"esno": "^0.12.1",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"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"
}
}
}