generated from NEARBuilders/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 999 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 999 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
{
"name": "curatedotfun-plugins",
"version": "0.0.1",
"private": true,
"packageManager": "bun@1.0.27",
"workspaces": [
"packages/*",
"apps/**/*",
"docs"
],
"scripts": {
"dev": "turbo run dev --filter=@curatedotfun/plugin-manager --filter=@curatedotfun/simple-transform --filter=@curatedotfun/object-transform --filter=@curatedotfun/ai-transform --filter=@curatedotfun/translate-transform",
"build": "turbo run build",
"lint": "turbo run lint",
"fmt": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"fmt:check": "prettier --check '**/*.{js,jsx,ts,tsx,json}'",
"docs": "cd docs && npx docusaurus start",
"docs:build": "cd docs && npx docusaurus build",
"docs:serve": "cd docs && npx docusaurus serve"
},
"devDependencies": {
"@types/node": "^20.11.0",
"prettier": "^3.3.3",
"turbo": "^2.4.3",
"@types/bun": "latest"
},
"module": "index.ts",
"type": "module",
"peerDependencies": {
"typescript": "^5.0.0"
}
}