-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "firost",
"version": "5.9.1",
"type": "module",
"description": "Async glob, read and write files",
"author": "Tim Carry <tim@pixelastic.com>",
"homepage": "https://projects.pixelastic.com/firost/",
"keywords": [
"shell",
"filesystem",
"copy",
"move",
"delete"
],
"repository": {
"type": "git",
"url": "https://github.com/pixelastic/firost"
},
"sideEffects": false,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
},
"files": [
"./*.js",
"./helpers/*.js",
"./newFile/*.js",
"./newFile/templates/*",
"./watch/*.js",
"./watch/helpers/*.js"
],
"exports": {
".": "./main.js"
},
"main": "./main.js",
"devDependencies": {
"get-port": "7.2.0"
},
"dependencies": {
"@inquirer/input": "5.1.2",
"@inquirer/select": "5.2.1",
"chokidar": "5.0.0",
"empathic": "2.0.1",
"eventemitter2": "6.4.9",
"execa": "9.6.1",
"fs-extra": "11.3.6",
"globby": "16.2.0",
"golgoth": "3.1.0",
"is-glob": "4.0.3",
"json-stable-stringify": "1.3.0",
"multimatch": "7.0.0",
"nanoid": "5.1.16",
"normalize-url": "8.1.1",
"ora": "9.4.1",
"rev-hash": "4.1.0",
"std-mocks": "2.0.0",
"strip-ansi": "7.2.0",
"untildify": "6.0.0",
"which": "6.0.1",
"yoctocolors": "2.1.2"
},
"scripts": {
"bench": "cd ../ && ./scripts/bench",
"build": "cd ../ && ./scripts/build",
"build:prod": "cd ../ && ./scripts/build-prod",
"cms": "cd ../ && ./scripts/cms",
"compress": "cd ../ && ./scripts/compress",
"lint": "cd ../ && ./scripts/lint",
"lint:fix": "cd ../ && ./scripts/lint-fix",
"release": "cd ../ && ./scripts/release",
"serve": "cd ../ && ./scripts/serve",
"test": "cd ../ && ./scripts/test",
"test:watch": "cd ../ && ./scripts/test-watch"
}
}