-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.98 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 4.98 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "coaction-monorepo",
"version": "2.1.0",
"private": true,
"description": "An efficient and flexible state management library for building high-performance, multithreading web applications.",
"homepage": "https://github.com/coactionjs/coaction#readme",
"bugs": {
"url": "https://github.com/coactionjs/coaction/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/coactionjs/coaction.git"
},
"main": "index.js",
"scripts": {
"postinstall": "manypkg check",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"watch": "pnpm dev",
"clean": "turbo run clean && rm -rf coverage .turbo .publish",
"fix": "manypkg fix",
"lint": "oxlint packages scripts examples docs .github *.config.* global.d.ts",
"lint:fix": "oxlint --fix packages scripts examples docs .github *.config.* global.d.ts",
"format": "oxfmt --check \"{packages,scripts,examples,docs,.github}/**/*.{js,mjs,cjs,ts,tsx,json,md,mdx,css,html,vue,yml,yaml}\" \".changeset/**/*.{json,md}\" \".vscode/**/*.json\" \".ox*.json\" \"package.json\" tsconfig*.json \"turbo.json\" \"typedoc.core.json\" \"vitest.config.mjs\" \"playwright.config.ts\" \"babel.config.js\" \"pnpm-workspace.yaml\" \"README.md\"",
"format:fix": "oxfmt \"{packages,scripts,examples,docs,.github}/**/*.{js,mjs,cjs,ts,tsx,json,md,mdx,css,html,vue,yml,yaml}\" \".changeset/**/*.{json,md}\" \".vscode/**/*.json\" \".ox*.json\" \"package.json\" tsconfig*.json \"turbo.json\" \"typedoc.core.json\" \"vitest.config.mjs\" \"playwright.config.ts\" \"babel.config.js\" \"pnpm-workspace.yaml\" \"README.md\"",
"typecheck": "tsc --noEmit --project tsconfig.typecheck.json",
"package:quality": "node ./scripts/check-package-quality.mjs",
"package:size": "node ./scripts/check-package-size.mjs",
"package:check": "pnpm build && pnpm package:quality && pnpm package:size",
"check": "turbo run quality && pnpm typecheck && pnpm build && pnpm package:quality && pnpm package:size && pnpm test",
"test": "turbo run test && pnpm run test:e2e",
"test:e2e": "vitest run examples/e2e/test",
"test:e2e:browser": "playwright test -c playwright.config.ts",
"test:coverage": "vitest run --coverage",
"commit": "cz",
"changeset": "node ./scripts/changeset.js",
"changeset:check": "node ./scripts/validate-changesets.js",
"changeset:minor-all": "node ./scripts/add-minor-all-changeset.js",
"version": "pnpm run changeset version",
"publish": "node ./scripts/publish-packages.mjs",
"benchmark:check": "NODE_ENV='production' node ./scripts/check-benchmark-regression.mjs",
"benchmark:mobx": "tsx ./packages/coaction-mobx/test/benchmark/index.ts",
"benchmark:zustand-positioning": "NODE_ENV='production' tsx ./scripts/benchmark-zustand-positioning.ts",
"benchmark": "NODE_ENV='production' tsx ./scripts/benchmark.ts",
"docs:api": "node ./scripts/generate-api-docs.js",
"docs:api:check": "pnpm run docs:api && node ./scripts/check-clean-path.js docs/api/core",
"prepare": "husky"
},
"devDependencies": {
"@actions/exec": "^3.0.0",
"@arethetypeswrong/cli": "^0.18.4",
"@babel/core": "^8.0.1",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@manypkg/cli": "^0.25.1",
"@manypkg/get-packages": "^3.1.0",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/vue": "^8.1.0",
"@types/benchmark": "^2.1.5",
"@types/jest": "^30.0.0",
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "^4.1.9",
"@vue/compiler-sfc": "^3.5.30",
"babel-preset-solid": "^1.9.10",
"benchmark": "^2.1.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"immer": "^11.1.4",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.3",
"mobx": "^6.15.0",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"publint": "^0.3.21",
"quickchart-js": "^3.1.3",
"rolldown": "^1.1.2",
"rolldown-plugin-dts": "^0.26.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.22.4",
"turbo": "^2.9.18",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3",
"vitest": "^4.1.9",
"vue": "^3.5.30",
"webpack-dev-middleware": "^7.4.5",
"zustand": "^5.0.11",
"zustand-mutative": "^1.3.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"oxlint --fix",
"oxfmt"
],
"*.{json,md,mdx,css,html,vue,yml,yaml}": [
"oxfmt"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=22.14.0"
},
"packageManager": "pnpm@11.8.0",
"authors": [
"Michael Lin <unadlib@gmail.com> (https://github.com/unadlib)"
]
}