forked from artalar/reatom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.03 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
{
"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",
"build": "turbo run build",
"reset": "./reset.sh",
"test": "turbo run test",
"prettify": "prettier --write **/*.{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",
"publish-packages": "turbo run build test && changeset version && changeset publish"
},
"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/v2",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@cookie-baker/core": "^0.2.1",
"@types/node": "latest",
"@types/prettier": "^2.7.1",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/use-sync-external-store": "^0.0.3",
"@vitejs/plugin-react": "^2.2.0",
"cross-fetch": "^3.1.5",
"history": "^5.3.0",
"husky": "^8.0.0",
"lit": "^2.6.0",
"microbundle": "^0.15.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"svelte": "^3.55.0",
"tsx": "^3.9.0",
"turbo": "^1.7.4",
"typescript": "^4.9.4",
"use-sync-external-store": "^1.2.0",
"uvu": "^0.5.6",
"vite": "^3.2.4",
"zx": "^7.0.8"
},
"peerDependencies": {
"prettier": "*"
},
"keywords": [
"state",
"store",
"state-manager",
"state manager",
"reactive",
"reactivity",
"flux",
"atom",
"reatom",
"@reatom"
]
}