-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 984 Bytes
/
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
{
"name": "api-reference-workspace",
"module": "example/index.ts",
"type": "module",
"scripts": {
"dev": "bun run build && bun i && bun run --cwd example dev",
"version": "bun scripts/version-manager.ts",
"build": "bun run --cwd packages/api-reference build",
"lint": "prettier --check packages/* --check example",
"lint:fix": "prettier --check packages/* --check example --write",
"release": "bun scripts/version-dev-detector.ts && bun run --cwd packages/api-reference release",
"clean": "rm -f -R node_modules/ && bun run --cwd packages/api-reference clean",
"test": "bun run build && bun i && jest --config jestconfig.json"
},
"workspaces": [
"packages/*",
"example"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"api-reference": "workspace:*",
"bun-types": "latest",
"jest": "^29.7.0",
"openapi-types": "^12.1.3",
"prettier": "3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5.0.0"
}
}