-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 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
{
"name": "@rtpl/root",
"private": true,
"description": "Tool for creating resources",
"homepage": "https://github.com/swordev/rtpl#readme",
"bugs": {
"url": "https://github.com/swordev/rtpl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/swordev/rtpl"
},
"license": "MIT",
"author": {
"name": "Juanra GM",
"email": "juanrgm724@gmail.com",
"url": "https://github.com/juanrgm"
},
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"check": "pnpm check:format",
"check:format": "prettier --cache -c .",
"clean": "tsc -b tsconfig.build.json --clean",
"format": "prettier --cache -w .",
"start": "node packages/cli/lib/bin.js",
"test": "vitest run",
"watch": "tsc -b tsconfig.build.json -w"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.14.0",
"npm-check-updates": "^17.1.16",
"prettier": "3.5.3",
"prettier-plugin-packagejson": "^2.5.10",
"prettier-plugin-sort-json": "^4.1.1",
"rtpl": "workspace:*",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"peerDependencies": {
"tsx": "^4.19.3"
},
"engine": {
"node": ">=20.0.0"
}
}