-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "constellar",
"private": false,
"version": "2.4.2",
"description": "",
"type": "module",
"scripts": {
"release": "release-it",
"format": "pnpx prettier --write packages/*/*/src",
"test:types": "pnpm --parallel --filter '@constellar/*' run test:types",
"test:unit": "pnpm --parallel --filter '@constellar/*' run test:unit --passWithNoTests",
"test:coverage": "pnpm --parallel --filter '@constellar/*' run test:coverage",
"build": "pnpm --filter '@constellar/core' run build; pnpm --filter '@constellar/jotai' run build",
"test:lint": "eslint packages/** --report-unused-disable-directives --max-warnings 0 --fix",
"test:knip": "knip",
"prepare": "husky"
},
"author": "Juliette Lamarche",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@cspell/eslint-plugin": "^8.14.4",
"@eslint/js": "^9.9.0",
"eslint": "^9.9.0",
"eslint-plugin-perfectionist": "^3.7.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"husky": "^9.1.4",
"knip": "^5.27.2",
"lint-staged": "^15.2.9",
"release-it": "^17.6.0",
"release-it-pnpm": "^4.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vitest": "^2.0.5"
},
"release-it": {
"git": {
"requireCleanWorkingDir": false,
"commitArgs": "--no-verify"
},
"plugins": {
"release-it-pnpm": {
"inFile": "CHANGELOG.md",
"publishCommand": "echo 'skip publish'"
}
}
}
}