-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.04 KB
/
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
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
76
77
78
79
80
81
82
83
{
"name": "@factorialco/shadowdog",
"version": "0.7.3",
"description": "",
"bin": {
"shadowdog": "dist/src/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/factorialco/shadowdog"
},
"main": "dist/src/cli.js",
"types": "dist/src/cli.d.ts",
"keywords": [
"artifact-generation",
"file-processing",
"build-tool",
"file-watcher",
"nodejs",
"npm-package",
"automation",
"plugins",
"workflow",
"static-assets",
"precompilation",
"pipeline",
"json-configuration",
"high-performance",
"watch-mode",
"local-cache",
"remote-cache",
"AWS-S3",
"dependency-tree",
"git-integration",
"rake-commands",
"socket-communication",
"schema-validation",
"open-source",
"MIT-license",
"turborepo"
],
"author": "David Morcillo <david.morcillo@factorial.co>, Ferran Basora <ferran.basora@factorial.co>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "vitest run",
"test": "vitest run --silent",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint",
"lint:inspect-config": "eslint --inspect-config",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build-schema": "tsx src/build-schema.ts",
"generate": "tsx src/cli.ts",
"watch": "tsx src/cli.ts --watch",
"all": "npm run build && npm run lint && npm run format && npm run generate && npm test"
},
"dependencies": {
"chalk": "^4",
"chokidar": "^3.5.3",
"commander": "^12.1.0",
"fs-extra": "^11.1.1",
"glob": "^10.2.1",
"minio": "8.0.0",
"tar": "7.2.0",
"zod": "3.23.8",
"zod-to-json-schema": "3.23.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/fs-extra": "11.0.1",
"@types/lodash": "^4.17.13",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.7"
}
}