-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.21 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": "akala",
"private": true,
"workspaces": [
"packages/*",
"packages/vite/test",
"docker"
],
"version": "385.0.0",
"publishConfig": {
"provenance": true
},
"funding": "https://github.com/npenin/akala?sponsor=1",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"bun-types": "^1.1.36",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.15.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"why-is-node-still-running": "^1.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts --cache",
"commit": "cz",
"generate": "yarn workspaces foreach -A run generate",
"generate-metadata": "yarn workspaces foreach -A run generate-metadata",
"build:esm": "tsc -b packages/tsconfig.esm.json",
"build:cjs": "tsc -b packages/tsconfig.cjs.json"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"source-map-js": "^1.2.0"
},
"packageManager": "[email protected]"
}