-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 917 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 917 Bytes
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
{
"name": "@stellaraf/cacheutil",
"version": "1.0.2",
"type": "module",
"license": "BSD-3-Clause",
"workspaces": [
"packages/*"
],
"private": true,
"dependencies": {
"@changesets/cli": "^2.24.4",
"@stellaraf/eslint-config": "^1.1.6",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"prettier": "^2.8.8",
"turbo": "^1.9.3",
"typescript": "^5.0.4"
},
"scripts": {
"lint": "turbo run lint",
"format": "turbo run format",
"typecheck": "turbo run typecheck",
"build": "turbo run build",
"test": "turbo run test"
},
"eslintConfig": {
"root": true,
"extends": [
"@stellaraf",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
]
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"semi": true
}
}