-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 802 Bytes
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,
"type": "module",
"scripts": {
"build": "stack build",
"check": "stack check",
"clean": "stack clean",
"fix": "stack fix",
"install": "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": "2.36.0"
},
"packageManager": "pnpm@11.2.2",
"devEngines": {
"packageManager": [
{
"name": "pnpm",
"version": "11.2.2",
"onFail": "download"
},
{
"name": "npm"
}
],
"runtime": {
"name": "node",
"version": ">=24.0.0",
"onFail": "error"
}
}
}