-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "jarl-react-packages",
"private": true,
"workspaces": [
"packages/jarl-atoms",
"packages/jarl-react",
"packages/docs"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"start": "npm run dev --workspace packages/docs",
"dev": "npm run dev --workspace packages/docs",
"test": "npm run test --workspaces --if-present",
"ci-test": "npm run ci-test --workspaces --if-present",
"test:e2e:install": "npm --prefix e2e install && npx --prefix e2e playwright install --with-deps chromium",
"test:e2e": "npm --prefix e2e run test",
"test:smoke:install": "npm --prefix e2e/registry-smoke install",
"test:smoke": "npm --prefix e2e/registry-smoke run test",
"test:smoke:local": "npm run build --workspace packages/jarl-atoms --workspace packages/jarl-react && npm --prefix e2e/registry-smoke run test:cjs-nodenext",
"ci-publish": "npm publish --workspace packages/jarl-atoms --workspace packages/jarl-react",
"notify": "node ./scripts/notify.ts",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "oxfmt .",
"format:check": "oxfmt . --check",
"typecheck": "tsc --noEmit -p tsconfig.json",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run --no-ci"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@babel/preset-typescript": "^8.0.1",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/enzyme": "^3.10.0",
"@types/express": "^4.17.0",
"@types/history": "^4.7.11",
"@types/hoist-non-react-statics": "^3.3.0",
"@types/invariant": "^2.2.37",
"@types/jsesc": "^3.0.3",
"@types/node": "^20.0.0",
"@types/prismjs": "^1.26.6",
"@types/prop-types": "^15.7.0",
"@types/qs": "^6.9.0",
"@types/ramda": "^0.32.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/react-test-renderer": "^16.9.12",
"@types/recompose": "^0.30.15",
"@types/warning": "^3.0.4",
"@vitejs/plugin-react": "^6.0.5",
"conventional-changelog-conventionalcommits": "^8.0.0",
"discord.js": "^11.3.2",
"jsdom": "^30.0.1",
"oxfmt": "^0.62.0",
"oxlint": "^1.77.0",
"rolldown": "^1.2.3",
"semantic-release": "^25.0.9",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vitest": "^4.1.10"
},
"overrides": {
"@yuku-toolchain/types": "0.8.3",
"cheerio": "1.0.0-rc.12",
"yuku-ast": "0.8.3",
"yuku-codegen": "0.8.3",
"yuku-parser": "0.8.3"
},
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
}
}