-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "@pplancq/svg-tools",
"license": "MIT",
"description": "An innovative tooling for asynchronous and ecological loading of SVG files",
"author": "pplancq <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/pplancq/svg-tools"
},
"scripts": {
"build": "npm run build --workspace=packages",
"pretest": "npm run build --workspace=@pplancq/svg-core",
"test": "vitest",
"pretest:ci": "npm run build --workspace=@pplancq/svg-core",
"test:ci": "vitest run --coverage",
"prelint": "npm run build --workspace=@pplancq/svg-core",
"lint": "npm run lint --workspace=packages",
"package:check": "npm exec --yes [email protected]",
"release": "multi-semantic-release",
"prepare": "husky"
},
"bugs": {
"url": "https://github.com/pplancq/svg-tools/issues"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@anolilab/multi-semantic-release": "^1.1.9",
"@commitlint/cli": "^19.6.1",
"@pplancq/commitlint-config": "^2.2.0",
"@pplancq/semantic-release-config": "^1.6.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.2",
"react": "^18.3.1 || ^19.0.0",
"react-dom": "^18.3.1 || ^19.0.0",
"semantic-release": "^24.2.1",
"tsc-files": "^1.1.4"
},
"overrides": {
"@testing-library/react": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"lint-staged": {
"(package|package-lock).json": "npm run package:check"
},
"release": {
"extends": [
"@pplancq/semantic-release-config"
]
},
"multi-release": {
"deps": {
"bump": "satisfy",
"prefix": "^"
}
},
"volta": {
"node": "22.13.1",
"npm": "11.0.0"
}
}