-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.42 KB
/
package.json
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
122
123
{
"name": "coaction-monorepo",
"private": true,
"description": "An efficient and flexible state management library for building high-performance, multithreading web applications.",
"workspaces": [
"packages/*"
],
"preconstruct": {
"packages": [
"packages/!(coaction-dev)"
],
"globals": {
"react": "React",
"mutative": "Mutative",
"mobx": "Mobx",
"pinia": "Pinia"
},
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true
}
},
"engines": {
"node": ">=16"
},
"main": "index.js",
"scripts": {
"preinstall": "node ./scripts/ensure-yarn.js",
"postinstall": "manypkg check && preconstruct dev",
"build": "preconstruct build",
"clean": "lerna exec rimraf ./dist",
"watch": "preconstruct watch",
"fix": "manypkg fix",
"typecheck": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"commit": "cz",
"changeset": "changeset",
"version": "changeset version && node ./scripts/bump-peer-dep-ranges.js",
"publish": "lerna exec --no-private --no-bail -- npm publish --access=public",
"update:version": "lerna version --amend --no-git-tag-version",
"benchmark:mobx": "tsx ./packages/coaction-mobx/test/benchmark/index.ts",
"benchmark": "NODE_ENV='production' tsx ./scripts/benchmark.ts"
},
"authors": [
"Michael Lin <[email protected]> (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",
"dependencies": {
"@actions/exec": "^1.0.2",
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@manypkg/cli": "^0.16.1",
"@manypkg/get-packages": "^1.1.3",
"@preconstruct/cli": "^2.8.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/vue": "^8.1.0",
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.10",
"@types/node": "^12.11.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"babel-preset-solid": "^1.8.4",
"benchmark": "^2.1.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^3.1.0",
"immer": "^10.1.1",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-regex-util": "^29.6.3",
"jest-watch-typeahead": "^2.2.2",
"lerna": "^8.1.3",
"lint-staged": "^8.2.1",
"prettier": "^3.3.3",
"quickchart-js": "^3.1.3",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"tslint": "^6.1.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vue": "^3.5.13",
"webpack-dev-middleware": "^3.6.0",
"zustand-mutative": "^1.2.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"**/tslib": "^2.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,mdx}": [
"prettier --write",
"git add"
]
},
"version": "0.1.1"
}