-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.38 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.38 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "personal-server-ts",
"private": true,
"description": "TypeScript implementation of the Vana Data Portability Protocol's Personal Server",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vana-com/personal-server-ts.git"
},
"homepage": "https://github.com/vana-com/personal-server-ts#readme",
"bugs": {
"url": "https://github.com/vana-com/personal-server-ts/issues"
},
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "npm run build && node --env-file-if-exists=.env packages/server/dist/index.js",
"dev": "tsc --build && tsx watch --env-file-if-exists=.env packages/server/src/index.ts",
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config tests/e2e/vitest.config.ts",
"lint": "tsc --noEmit",
"lint:eslint": "eslint 'packages/*/src/**/*.ts'",
"lint:eslint:fix": "eslint --fix 'packages/*/src/**/*.ts'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"mcp": "npm run build && node --env-file-if-exists=.env packages/mcp/dist/index.js",
"register-server": "tsx --env-file-if-exists=.env scripts/register-server.ts",
"register-builder": "tsx --env-file-if-exists=.env scripts/register-builder.ts",
"validate": "npm run lint && npm run lint:eslint && npm run format:check && npm test",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.3",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^25.2.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}