-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.74 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": "eventkit",
"private": true,
"scripts": {
"build": "pnpm run --filter=\"./packages/[^_]**\" build",
"watch": "pnpm build && pnpm run --filter=\"./packages/[^_]**\" --parallel build --watch",
"clean": "git clean -fdX .",
"clean:build": "git clean -fdx -e node_modules .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --flag unstable_config_lookup_from_file --cache .",
"prerelease": "pnpm build",
"release": "changeset publish",
"test": "vitest",
"test:inspect": "node --inspect-brk node_modules/.bin/vitest",
"typecheck": "pnpm run --recursive --parallel typecheck",
"changeset": "changeset",
"changeset:version": "changeset version",
"docs:types": "node scripts/typedoc.js",
"docs:dev": "trap 'kill $(jobs -p)' EXIT; pnpm docs:types --watch & vitepress dev docs",
"docs:build": "pnpm docs:types && vitepress build docs",
"docs:preview": "pnpm docs:types && vitepress preview docs"
},
"packageManager": "pnpm@10.4.0",
"dependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@eslint/js": "^9.22.0",
"@types/semver": "^7.5.8",
"eslint": "^9.20.1",
"eslint-plugin-comment-length": "^2.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-helpers": "^2.0.1",
"globals": "^16.0.0",
"msw": "^2.7.3",
"prettier": "^3.5.1",
"tsup": "^8.3.6",
"typedoc": "^0.28.1",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-markdown": "^4.6.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.0",
"vitepress": "^1.6.3",
"vitest": "^3.0.6"
},
"engines": {
"node": ">=20.0.0"
}
}