-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "page-urls",
"type": "module",
"private": "true",
"scripts": {
"lint": "turbo run lint",
"build": "turbo run build",
"prepare": "husky install",
"test:code": "vitest --run",
"test:type": "turbo run test:types",
"coverage": "vitest run --coverage",
"lint:fix": "eslint . --ext .ts --fix",
"lint:ts": "tsc --noEmit",
"pretty": "prettier --write \"src/**/*.ts\"",
"clean-up": "npm run lint-and-fix & npm run pretty",
"commit": "git-cz",
"precommit": "lint-staged",
"changeset": "changeset",
"publish:packages": "changeset publish",
"version:packages": "changeset version"
},
"workspaces": [
"packages/*"
],
"author": "Artem Ilchenko",
"license": "ISC",
"dependencies": {
"@changesets/cli": "^2.27.5",
"tsup": "^8.0.2",
"type-fest": "^4.18.3"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.47.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitest/coverage-v8": "^1.6.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.4",
"tsd": "^0.31.0",
"turbo": "^1.13.3",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*": [
"git add"
],
"*.{ts}": [
"prettier --write"
]
}
}