-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
81 lines (81 loc) · 2.19 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
{
"name": "reatom",
"private": true,
"description": "Expressive and deterministic state manager",
"scripts": {
"release": "npx tsx ./tools/publish.ts",
"postinstall": "turbo run build --filter=core --filter=framework --filter=testing",
"build": "turbo run build",
"reset": "./reset.sh",
"test": "turbo run build --filter=testing && turbo run test",
"prettify": "prettier --write */**/**/*.{js,ts,md}",
"prettify:check": "prettier --check */**/**/*.{js,ts,md}",
"prettify:watch": "onchange */**/**/*.{js,ts,md} -- prettier --write {{changed}}",
"package-generator": "tsx tools/new-package.ts",
"update": "npx npm-check-updates -u",
"prepare": "husky install",
"actualize-issue-templates": "npx tsx ./tools/actualize-issue-templates.ts"
},
"workspaces": [
"packages/*"
],
"author": "artalar",
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/artalar/reatom.git"
},
"engines": {
"npm": ">=8.0.0"
},
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://github.com/artalar/reatom/tree/v3",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@cookie-baker/core": "^0.2.1",
"@types/node": "latest",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@types/use-sync-external-store": "^0.0.6",
"@vitejs/plugin-react": "^4.2.1",
"bun": "^1.1.13",
"core-js": "^3.37.1",
"history": "^5.3.0",
"husky": "^8.0.3 ",
"linkedom": "^0.18.5",
"lit": "^3.1.2",
"microbundle": "^0.15.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"svelte": "^4.2.12",
"tsx": "^4.7.1",
"turbo": "^1.13.0",
"typescript": "^5.4.3",
"use-sync-external-store": "^1.2.0",
"uvu": "^0.5.6",
"vite": "^5.2.6",
"vitest": "^2.1.3",
"zx": "^7.2.3"
},
"peerDependencies": {
"prettier": "*"
},
"keywords": [
"state",
"store",
"state-manager",
"state manager",
"reactive",
"reactivity",
"flux",
"atom",
"reatom",
"@reatom"
]
}