-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "tinylibs",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/arthurfiorette/tinylibs#readme",
"bugs": "https://github.com/arthurfiorette/tinylibs/issues",
"repository": "https://github.com/arthurfiorette/tinylibs.git",
"license": "MIT",
"author": "Arthur Fiorette <[email protected]>",
"workspaces": {
"packages": [
"packages/**"
]
},
"scripts": {
"build": "pnpm -r --parallel build",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"lint": "biome check .",
"lint:ci": "biome ci .",
"lint:fix": "biome check --write --unsafe .",
"test": "pnpm -r --parallel test"
},
"devDependencies": {
"@arthurfiorette/biomejs-config": "^1.0.6",
"@arthurfiorette/prettier-config": "1.0.12",
"@biomejs/biome": "^1.9.4",
"@types/jest": "29.5.12",
"@types/node": "^20.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.3.3",
"prettier-plugin-jsdoc": "1.3.0",
"prettier-plugin-organize-imports": "4.0.0",
"ts-jest": "29.2.5",
"tslib": "2.7.0",
"typescript": "5.6.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9"
}
}