-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.33 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
{
"name": "polynote",
"version": "1.0.0",
"private": true,
"description": "PolyNote - Universal note sync and AI-powered knowledge management",
"author": "PolyNote Team",
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"build": "node ./scripts/run-workspace-builds.mjs",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "npm run type-check --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^24.6.2",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.4",
"typescript": "^5.9.3"
}
}