-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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
{
"name": "peam-monorepo",
"private": true,
"scripts": {
"build": "turbo build",
"build:watch": "turbo run build:watch",
"docs:dev": "pnpm --filter peam-docs dev",
"format": "turbo run format",
"clean": "turbo run clean",
"test": "run-p test:*",
"test:lint": "turbo run test:lint",
"test:format": "turbo run test:format",
"test:unit": "turbo run test:unit -- --passWithNoTests",
"test:docs": "pnpm --filter @peam-ai/docs-typecheck test:docs",
"test:examples": "pnpm --filter @peam-ai/examples-tests test:unit",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build && changeset publish",
"publish-packages": "turbo run build test && changeset version && changeset publish"
},
"packageManager": "pnpm@10.28.2",
"repository": {
"type": "git",
"url": "git+https://github.com/peam-ai/peam.git"
},
"author": "Afshin Mehrabani",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/peam-ai/peam/issues"
},
"homepage": "https://github.com/peam-ai/peam#readme",
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.0",
"@vitest/ui": "^2.1.8",
"eslint": "^9.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"happy-dom": "^15.11.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-node": "^10.9.2",
"turbo": "^2.0.14",
"typescript": "^5.5.4",
"typescript-eslint": "^8.50.0",
"vitest": "^2.1.8"
}
}