-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.05 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": "root",
"version": "0.0.0",
"private": true,
"description": "My opinionated stack to ease project building",
"license": "MIT",
"author": {
"name": "Ayoub Adib",
"email": "adbayb@gmail.com",
"url": "https://twitter.com/adbayb"
},
"repository": {
"type": "git",
"url": "git@github.com:adbayb/stack.git"
},
"type": "module",
"scripts": {
"build": "stack build",
"check": "stack check",
"clean": "stack clean",
"fix": "stack fix",
"install": "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"
},
"devDependencies": {
"@adbayb/stack": "workspace:*"
},
"devEngines": {
"packageManager": [
{
"name": "pnpm",
"version": "11.10.0",
"onFail": "download"
},
{
"name": "npm"
}
],
"runtime": {
"name": "node",
"version": ">=24.0.0",
"onFail": "error"
}
},
"packageManager": "pnpm@11.10.0"
}