-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.98 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.98 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
{
"name": "lightning-flow-scanner",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@9.0.0",
"scripts": {
"build": "turbo run build --filter=!lightning-flow-scanner-action",
"build:all": "turbo run build",
"build:regex": "pnpm turbo run build --filter=@flow-scanner/regex-scanner",
"build:core": "pnpm turbo run build --filter=@flow-scanner/lightning-flow-scanner-core",
"build:cli": "pnpm turbo run build --filter=lightning-flow-scanner",
"build:action": "pnpm turbo run build --filter=lightning-flow-scanner-action",
"build:vsx": "pnpm --filter=lightning-flow-scanner-vsx run build",
"build:vsx:package": "pnpm --filter=lightning-flow-scanner-vsx run build:vsx",
"generate:readme": "node .github/scripts/generate-readme.js",
"build:docs": "node .github/scripts/generate-readme.js && node .github/scripts/update-package-readmes.js",
"test": "turbo run test --filter=!lightning-flow-scanner-action",
"test:core": "turbo run test --filter=@flow-scanner/lightning-flow-scanner-core",
"test:cli": "turbo run test --filter=lightning-flow-scanner",
"clean": "turbo run clean",
"dev": "turbo run build --watch",
"watch:vsx": "pnpm --filter=lightning-flow-scanner-vsx run watch",
"dist": "turbo run vite:dist --filter=@flow-scanner/lightning-flow-scanner-core",
"vsx:patch": "pnpm --filter=lightning-flow-scanner-vsx version:patch && pnpm --filter=lightning-flow-scanner-vsx publish:vsx",
"vsx:minor": "pnpm --filter=lightning-flow-scanner-vsx version:minor && pnpm --filter=lightning-flow-scanner-vsx publish:vsx",
"vsx:major": "pnpm --filter=lightning-flow-scanner-vsx version:major && pnpm --filter=lightning-flow-scanner-vsx publish:vsx"
},
"devDependencies": {
"turbo": "^2.6.1",
"prettier": "^3.6.2",
"rimraf": "^6.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "20.19.6",
"pnpm": "9.0.0"
},
"repository": "https://github.com/Flow-Scanner/lightning-flow-scanner.git"
}