-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.83 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.83 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
{
"name": "coaction-monorepo",
"private": true,
"description": "An efficient and flexible state management library for building high-performance, multithreading web applications.",
"engines": {
"node": ">=20.19.0"
},
"main": "index.js",
"scripts": {
"postinstall": "manypkg check",
"build": "pnpm -r --filter './packages/*' run build",
"clean": "turbo run clean",
"watch": "pnpm -r --parallel --filter './packages/*' run dev",
"fix": "manypkg fix",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "tsc --noEmit",
"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": "pnpm -r --filter './packages/*' publish --access=public --no-git-checks",
"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"
},
"authors": [
"Michael Lin <unadlib@gmail.com> (https://github.com/unadlib)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/coaction.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/coaction/issues"
},
"homepage": "https://github.com/unadlib/coaction#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,mdx,css,html,vue,yml,yaml}": [
"prettier --write",
"git add"
]
},
"version": "2.0.0",
"packageManager": "pnpm@10.29.3",
"pnpm": {
"overrides": {
"tslib": "^2.3.1"
}
},
"devDependencies": {
"@actions/exec": "^3.0.0",
"@babel/core": "^7.29.0",
"@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.30.0",
"@eslint/js": "^9.39.4",
"@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": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"@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",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"immer": "^11.1.4",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.3",
"mobx": "^6.15.0",
"prettier": "^3.8.1",
"quickchart-js": "^3.1.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.5.0",
"tsx": "^4.21.0",
"turbo": "^2.8.16",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.1.0",
"vue": "^3.5.30",
"webpack-dev-middleware": "^7.4.5",
"zustand": "^5.0.11",
"zustand-mutative": "^1.3.1"
}
}