-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 986 Bytes
/
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
{
"name": "root",
"version": "0.0.0",
"private": true,
"description": "My opinionated stack to ease project building",
"repository": {
"type": "git",
"url": "[email protected]:adbayb/stack.git"
},
"license": "MIT",
"author": {
"name": "Ayoub Adib",
"email": "[email protected]",
"url": "https://twitter.com/adbayb"
},
"type": "module",
"scripts": {
"build": "stack build",
"check": "stack check",
"clean": "stack clean",
"fix": "stack fix",
"prepare": "pnpm --filter stack build && stack install",
"release:log": "stack release --log",
"release:publish": "stack release --publish",
"release:version": "stack release --tag",
"start": "stack start",
"test": "stack test",
"watch": "stack watch"
},
"prettier": "@adbayb/stack/prettier",
"devDependencies": {
"@adbayb/stack": "workspace:*"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.0.0",
"npm": "please-use-pnpm",
"pnpm": ">=9.0.0",
"yarn": "please-use-pnpm"
}
}