-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 2 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
{
"name": "argent-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build",
"start": "npm run build -w @argent/registry && npm run dev -w @argent/tool-server",
"start:tool-server": "npm run build -w @argent/registry && npm run dev -w @argent/tool-server",
"download:simulator-server": "bash scripts/download-simulator-server.sh",
"download:native-binaries": "bash scripts/download-native-binaries.sh",
"download:trace-processor": "bash scripts/download-trace-processor.sh",
"build:ios-binaries": "bash packages/native-devtools-ios/scripts/build.sh dev",
"build:ios-binaries:tcp": "bash packages/native-devtools-ios/scripts/build.sh dev --transport tcp",
"build:android-binaries": "bash packages/native-devtools-android/scripts/build.sh",
"pack": "node scripts/pack-mcp.cjs",
"pack:mcp": "node scripts/pack-mcp.cjs",
"pack:mcp:local": "npm run download:simulator-server && npm run build:ios-binaries && npm run build:ios-binaries:tcp && npm run build:android-binaries && npm run download:trace-processor && npm run build && npm run build -w @swmansion/argent && npm pack -w @swmansion/argent --pack-destination .",
"dev": "node scripts/dev.cjs",
"format": "prettier --write .",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"knip": "knip --exclude exports,types && knip --include exports,types,classMembers,nsExports,nsTypes --max-issues 215",
"typecheck:scripts": "tsc --noEmit -p tsconfig.scripts.json",
"test:scripts": "node --test scripts/sync-next-dist-tag.test.mjs scripts/extract-tools.test.mjs scripts/next-canary-version.test.mjs scripts/check-workspace-versions.test.mjs",
"check:versions": "node scripts/check-workspace-versions.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"globals": "^17.7.0",
"knip": "^5.88.1",
"prettier": "^3.8.5",
"semver": "^7.8.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0"
}
}