-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "sourcetool",
"version": "1.0.0",
"description": "",
"scripts": {
"frontend": "pnpm --filter sourcetool-frontend",
"docs": "pnpm --filter sourcetool-docs",
"lint": "eslint .",
"build:frontend": "pnpm --filter sourcetool-frontend build",
"dev:frontend": "pnpm --filter sourcetool-frontend dev",
"dev:frontend:tsr": "pnpm --filter sourcetool-frontend dev:tsr",
"lint:frontend": "eslint ./frontend",
"format:frontend": "eslint ./frontend --fix && prettier ./frontend --write",
"preview:frontend": "pnpm --filter sourcetool-frontend preview",
"typecheck:frontend": "pnpm --filter sourcetool-frontend typecheck",
"build:docs": "pnpm --filter sourcetool-docs build",
"dev:docs": "pnpm --filter sourcetool-docs start",
"typecheck:docs": "pnpm --filter sourcetool-docs typecheck",
"build:mcp-docs": "pnpm --filter docs-mcp-server build",
"test:mcp-docs": "pnpm --filter docs-mcp-server test",
"build:sdk-node": "pnpm --filter @sourcetool/node build",
"dev:sdk-node": "pnpm --filter @sourcetool/node build:watch",
"test:sdk-node": "pnpm --filter @sourcetool/node test",
"typecheck:sdk-node": "pnpm --filter @sourcetool/node typecheck"
},
"engines": {
"npm": "use pnpm please!",
"yarn": "use pnpm please!",
"pnpm": ">=10.8.0",
"node": ">=20.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.8.0",
"devDependencies": {
"@eslint/js": "^9.24.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "catalog:",
"typescript-eslint": "^8.30.1"
},
"dependencies": {
"@sourcetool/node": "link:sdk/node",
"hello-world": "link:examples/node/hello-world"
}
}