-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.55 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
53
{
"name": "@wakaru/monorepo",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"description": "🔪📦 Javascript decompiler, unpacker and unminify toolkit",
"author": "Pionxzh",
"license": "MIT",
"homepage": "https://github.com/pionxzh/wakaru",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:coverage": "vitest run --globals --coverage",
"test:ui": "vitest --globals --ui --coverage.enabled=true",
"test:update": "turbo run test:update",
"test:watch": "turbo run test:watch",
"test:type": "turbo run test:type",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"bump-deps": "pnpm exec taze",
"generate:pretty-testcases": "esno scripts/pretty-testcases.ts"
},
"devDependencies": {
"@pionxzh/eslint-config": "^1.0.1",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.0",
"@vitest/ui": "^1.5.0",
"eslint": "^8.57.0",
"esno": "^0.17.0",
"globby": "^11.1.0",
"prettier": "^2.8.8",
"taze": "^0.13.6",
"turbo": "^1.13.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@clack/[email protected]": "patches/@[email protected]",
"@clack/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"resolutions": {
"ast-types": "^0.16.1"
}
}