-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.17 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.17 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
80
81
82
83
84
85
{
"name": "wyw-in-js",
"description": "",
"version": "1.0.2",
"author": "Anton Evzhakov",
"bugs": "https://github.com/Anber/wyw-in-js/issues",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-explicit-resource-management": "^7.23.3",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@changesets/cli": "^2.26.2",
"@changesets/get-release-plan": "^3.0.17",
"@changesets/write": "^0.2.3",
"@napi-rs/cli": "^2.18.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@wyw-in-js/eslint-config": "workspace:*",
"@wyw-in-js/ts-config": "workspace:*",
"commander": "^11.1.0",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "5.0.0",
"glob": "^10.3.10",
"idea-exclude": "^1.2.1",
"package-json": "^8.1.1",
"prettier": "3.0.3",
"semver": "^7.5.4",
"syncpack": "^11.2.1",
"turbo": "1.13.4",
"typescript": "^5.2.2",
"yaml": "^2.3.2"
},
"engines": {
"node": ">=20.0.0"
},
"exports": {
"./*.md": "./*.md"
},
"homepage": "https://github.com/Anber/wyw-in-js#readme",
"keywords": [],
"license": "MIT",
"private": true,
"repository": "git@github.com:Anber/wyw-in-js.git",
"packageManager": "bun@1.3.5",
"scripts": {
"build": "turbo run build:esm build:lib build:types --filter \"./packages/*\"",
"build:esm": "turbo run build:esm --filter \"./packages/*\"",
"build:lib": "turbo run build:lib --filter \"./packages/*\"",
"build:types": "turbo run build:types --filter \"./packages/*\"",
"check": "bun run lint && bun run test",
"clean": "del '{e2e,examples,packages}/*/{coverage,dist,esm,lib,types,tsconfig.tsbuildinfo}'",
"idea-exclude:artifacts": "idea-exclude artifacts \"{configs,e2e,examples,packages}/*/{.turbo,esm,lib,types}\"",
"idea-exclude:nm": "idea-exclude node_modules \"**/node_modules\"",
"lint": "bun run lint:scripts && bun run --filter './apps/*' --filter './e2e/*' --filter './examples/*' --filter './packages/*' --if-present lint",
"lint:scripts": "eslint --ext .js,.ts,.mjs scripts",
"release": "bun run build && node ./scripts/prepare-publish.mjs && changeset publish",
"sp:check": "syncpack",
"sp:fix": "syncpack format && syncpack fix-mismatches",
"sp:format": "syncpack format",
"sp:list": "syncpack list-mismatches",
"validate-versions": "node ./scripts/validate-versions.mjs",
"test": "bun run --filter './apps/*' --filter './e2e/*' --filter './examples/*' --filter './packages/*' --if-present test",
"version": "node ./scripts/bump-versions.mjs && changeset version",
"website": "bun run --filter @wyw-in-js/website deploy"
},
"workspaces": [
".",
"apps/*",
"configs/*",
"crates/*",
"e2e/*",
"examples/*",
"packages/*"
]
}