-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "rineex-root",
"version": "1.0.0",
"description": "Root package for Rineex core modules",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"test:types": "turbo run test:types",
"test:ci": "turbo run test build",
"check-types": "turbo run check-types",
"prepublish": "pnpm run build",
"prettier": "prettier --ignore-unknown '**/*'",
"prettier:write": "pnpm run prettier --write",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm prettier:write",
"changeset:publish": "changeset publish",
"g:pkg": "node scripts/generate-package.mjs"
},
"keywords": [
"rineex",
"core"
],
"author": "Rineex Team",
"license": "Apache-2.0",
"packageManager": "pnpm@10.22.0",
"private": true,
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@fullstacksjs/eslint-config": "13.8.2",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@vitest/ui": "4.0.16",
"cspell": "9.4.0",
"eslint": "9.39.2",
"lint-staged": "16.2.7",
"prettier": "3.7.4",
"simple-git-hooks": "2.13.1",
"turbo": "2.6.3",
"vitest": "4.0.16"
},
"volta": {
"node": "24.12.0"
},
"lint-staged": {
"*.{md,json,yml,yaml,html}": [
"prettier --write",
"cspell --no-must-find-files"
],
"*.{ts,tsx}": [
"prettier --write",
"cspell --no-must-find-files"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm run test",
"preserveUnused": true
}
}