-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.11 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
{
"name": "statx",
"private": true,
"description": "Tiny and effective state manager",
"keywords": [
"state",
"store",
"state-manager",
"state manager",
"reactive",
"reactivity",
"flux",
"@statx",
"statx"
],
"bugs": {
"url": "https://github.com/kaifaty/statx/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kaifaty/statx.git"
},
"license": "MIT",
"author": "kaifaty",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"new-package": "tsx tools/new-package/create.ts",
"prettify": "prettier --write **/*.json",
"build": "lerna run build",
"lint": "lerna run lint",
"publish": "lerna publish",
"test": "lerna run test",
"fix": "eslint --fix \"**/*.{ts,tsx}\"",
"graph": "nx graph"
},
"devDependencies": {
"@alenaksu/json-viewer": "^2.0.1",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@parcel/packager-ts": "^2.11.0",
"@parcel/transformer-typescript-types": "^2.11.0",
"@types/mocha": "^10.0.6",
"@types/react": "^16.2.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@web/dev-server-esbuild": "^1.0.1",
"@web/test-runner": "^0.18.1",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"@xstate/fsm": "^3.0.0-beta.3",
"better-color-tools": "^0.12.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"force-graph": "^1.43.4",
"lerna": "^7.4.2",
"lit": "^3.0.0",
"nvm": "^0.0.4",
"parcel": "^2.11.0",
"parcel-resolver-fix-ts-esm-shit": "^0.0.1",
"parcel-resolver-typescript-esm": "^1.0.1",
"prettier": "^3.0.0",
"process": "^0.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.1",
"tsm": "^2.3.0",
"tsx": "^3.12.7",
"typescript": "^5.3.3",
"uvu": "^0.5.6",
"zx": "^7.2.3"
},
"engines": {
"npm": ">=8.0.0"
},
"readme": "README.md"
}