-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.62 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
{
"name": "@vgerbot/web-rpc-root",
"version": "1.0.0",
"description": "A TypeScript monorepo for web-rpc implementation with modern tooling including tsup, vitest, and comprehensive testing setup",
"type": "module",
"main": "index.js",
"scripts": {
"build": "pnpm -r --if-present build",
"build:watch": "pnpm build -- --watch",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"type-check": "tsc --noEmit",
"test": "pnpm -r --if-present test",
"test:unit": "pnpm -r --if-present test:unit",
"test:integration": "pnpm -r --if-present test:integration",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"postinstall": "(is-ci || husky) && playwright install",
"tsc": "tsc --noEmit --project tsconfig.source.json && tsc --noEmit --project tsconfig.test.json && tsc --noEmit --project tsconfig.devtools.json"
},
"author": "Chienhsin Yang <y1j2x345@gmail.com>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^20.5.3",
"@commitlint/prompt-cli": "^20.5.3",
"@eslint/js": "^9.39.4",
"@types/deasync": "^0.1.5",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/browser": "^4.1.7",
"@vitest/coverage-istanbul": "^4.1.7",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.5.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^16.4.0",
"markdown-it": "^14.1.1",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"playwright": "^1.60.0",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typedoc": "^0.28.19",
"typescript": "^5.8.3",
"typescript-eslint": "^8.59.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.1.7",
"whatwg-fetch": "^3.6.20"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.{js,ts,cjs,mjs}": ["eslint --fix", "prettier --write"],
"*.{json,jsonc}": ["prettier --write"]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}