-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 KB
/
package.json
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
{
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"packages/@*/*",
"examples"
],
"scripts": {
"coverage": "vitest run --coverage",
"test": "vitest",
"clean": "npm exec -ws -- rimraf ./lib .tsbuildinfo",
"build": "tsc -b tsconfig.build.json",
"build:watch": "tsc -b tsconfig.build.json --watch",
"format": "eslint --ext ts packages --fix && prettier --write '**/**/*.{ts,json}'",
"lint": "eslint --ext ts packages && prettier --check '**/**/*.{ts,json}'",
"prepare": "husky install",
"lint-staged": "lint-staged",
"release": "npm run clean && npm run build && changeset publish"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"npx prettier --write ."
]
},
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.45.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.2.2",
"urlpattern-polyfill": "^9.0.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.2"
}
}