-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "ya-signals",
"version": "1.0.1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/betula/ya-signals.git"
},
"keywords": [
"framework",
"reactive",
"decorators",
"oop",
"functional",
"service",
"hooks",
"mobx",
"signals"
],
"scripts": {
"test": "vitest --changed",
"test:ci": "vitest",
"test:all": "vitest",
"lint": "eslint \"./src/**/*.{ts,tsx}\" --format=codeframe",
"lint:fix": "yarn run lint --fix",
"ts-check": "tsc --noEmit",
"type:check": "tsc --noEmit",
"format": "prettier \"./src/**/*.{ts,tsx}\" -w",
"build": "tsup"
},
"dependencies": {
"mobx": "6.12.3",
"mobx-react-lite": "4.0.7",
"mobx-utils": "6.0.8"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/node": "20.12.7",
"@types/react": "18.2.21",
"@vitest/coverage-v8": "3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.0.0",
"tsup": "^8.3.5",
"typescript": "^5.1.6",
"vitest": "3.0.2"
}
}