-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 894 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 894 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
{
"name": "genai-prices-root",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/js"
],
"scripts": {
"format": "prettier --write -- . && npm run lint-fix",
"lint-fix": "npm run lint-fix --workspace=packages/js",
"typecheck": "npm run typecheck --workspace=packages/js",
"build": "npm run build --workspace=packages/js",
"test": "npm run test --workspace=packages/js",
"ci": "npm run build && npm run test"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 119,
"bracketSpacing": true,
"overrides": [
{
"files": [
"*.yaml",
"*.yml"
],
"options": {
"singleQuote": false
}
}
]
},
"devDependencies": {
"prettier": "^3.6.2"
}
}