-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.43 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
{
"name": "@jay-framework/jay-wix-packages",
"private": true,
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "wsrun -te --report build",
"build:check-types": "wsrun -p '@jay-framework/*' -e --prefix build:check-types",
"build:watch": "wsrun -p '@jay-framework/*' --prefix build:watch",
"build:esbuild": "wsrun -te --report build:esbuild",
"clean": "wsrun clean",
"clean:node_modules": "rimraf node_modules && rimraf packages/*/node_modules && rimraf examples/*/node_modules && rimraf exploration/*/node_modules",
"clean:node_modules:with-cache": "npm run clean:node_modules && yarn cache clean",
"confirm": "npm run rebuild && npm run build:check-types && npm run test && npm run format",
"deps:upgrade": "yarn upgrade-interactive && yarn && yarn deduplicate",
"deduplicate": "yarn dedupe --strategy highest",
"format": "npm run format:extensions && npm run format:prettier && npm run format:newlines && npm run format:lockfile",
"format:lockfile": "node ./scripts/clean-lockfile.mjs",
"format:extensions": "node ./scripts/fix-imports-ts-extension.js",
"format:prettier": "prettier . --write",
"format:newlines": "node ./scripts/fix-trailing-newlines.js",
"agent-kit": "jay-stack-cli agent-kit",
"rebuild": "yarn run clean && yarn run build",
"reinstall": "npm run clean:node_modules && yarn install && yarn run rebuild",
"test": "wsrun -te --report test",
"version:packages:patch": "wsrun -p '@jay-framework/*' -s -e --report --prefix version patch --deferred && yarn version apply --all",
"version:packages:minor": "wsrun -p '@jay-framework/*' -s -e --report --prefix version minor --deferred && yarn version apply --all",
"version:packages:major": "wsrun -p '@jay-framework/*' -s -e --report --prefix version major --deferred && yarn version apply --all",
"set-version": "node scripts/set-version.js",
"publish": "node scripts/publish.cjs"
},
"packageManager": "yarn@4.17.1",
"workspaces": {
"packages": [
"dev-environment",
"packages/**",
"examples/**",
"exploration/**"
]
},
"devDependencies": {
"@inquirer/prompts": "^8.5.2",
"@jay-framework/jay-stack-cli": "^0.24.6",
"commander": "^14.0.0",
"esbuild": "^0.20.0",
"prettier": "^3.2.4",
"replace-in-file": "^7.1.0",
"wsrun": "^5.2.4"
},
"resolutions": {
"@wix/sdk-runtime": "1.0.11"
},
"engines": {
"node": ">=20.0.0"
}
}