-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.59 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
{
"name": "jay",
"private": true,
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "wsrun -p '@jay-framework/*' -p 'create-jay' -p 'example-jay-*' -x example-jay-todo-components-rollup -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",
"rebuild": "yarn run clean && yarn run build",
"sync:wix": "node scripts/sync-to-wix.cjs",
"sync:golf": "node scripts/sync-to-golf.cjs",
"reinstall": "npm run clean:node_modules && yarn install && yarn run rebuild",
"test": "wsrun -p '@jay-framework/*' -p 'create-jay' -p 'example-jay-*' -te --report test",
"version:packages:patch": "wsrun -p '@jay-framework/*' -p 'create-jay' -s -e --report --prefix version patch --deferred && yarn version apply --all",
"version:packages:minor": "wsrun -p '@jay-framework/*' -p 'create-jay' -s -e --report --prefix version minor --deferred && yarn version apply --all",
"version:packages:major": "wsrun -p '@jay-framework/*' -p 'create-jay' -s -e --report --prefix version major --deferred && yarn version apply --all",
"publish": "node scripts/publish.cjs"
},
"packageManager": "yarn@4.17.1",
"workspaces": {
"packages": [
"dev-environment",
"packages/runtime/*",
"packages/compiler/*",
"packages/jay-stack/*",
"packages/plugins/*",
"packages/_deprecated/*",
"examples/**",
"exploration/*"
]
},
"devDependencies": {
"commander": "^14.0.0",
"esbuild": "^0.20.0",
"prettier": "^3.2.4",
"replace-in-file": "^7.1.0",
"wsrun": "^5.2.4"
},
"engines": {
"node": ">=20.0.0"
}
}