-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "tsm-cookbook",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "TSM Cookbook Monorepo",
"author": "TSM Organization",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ts-macro/cookbook.git"
},
"scripts": {
"test": "vitest",
"lint": "NODE_OPTIONS=--import=tsx eslint --config=eslint.config.ts .",
"prepare": "simple-git-hooks",
"build": "turbo build"
},
"dependencies": {
"@tsm-cookbook/replace-with-boolean-literal": "workspace:*"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"eslint": "^9.14.0",
"jiti": "^2.4.0",
"lint-staged": "^15.2.10",
"muggle-string": "^0.4.1",
"simple-git-hooks": "^2.11.1",
"ts-macro": "^0.1.5",
"tsdown": "^0.3.0",
"tsx": "^4.19.2",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"pnpm lint --fix"
]
}
}