-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.49 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@yantrix/monorepo",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"description": "Event-Driven FSM Framework",
"contributors": [
"Alexander Uskov <https://github.com/octaharon>",
"Noktomezo <https://github.com/Noktomezo>",
"Denis Perevertov <https://github.com/denis-perevertov>",
"Nikita Beliaew <https://github.com/Nekitech>",
"Sin <https://github.com/Volshebnik09>",
"Alexey Geraim <https://github.com/obl1v1onZzz>",
"Саша <https://github.com/22sasha>"
],
"license": "MIT",
"homepage": "https://tfcp68.github.io/yantrix",
"repository": {
"type": "git",
"url": "https://github.com/tfcp68/yantrix.git"
},
"bugs": {
"url": "https://github.com/tfcp68/yantrix/issues"
},
"keywords": [
"fsm",
"typescript",
"state",
"management",
"eda",
"uml",
"mermaidjs"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo run build --concurrency=4",
"build:affected": "turbo run build --filter=...[origin/main] --concurrency=4",
"clean": "rimraf --glob **/dist **/coverage **/*_generated.*",
"format": "turbo run format --concurrency=4",
"format:affected": "turbo run format --filter=...[origin/main] --concurrency=4",
"lint": "turbo run lint --concurrency=4",
"lint:affected": "turbo run lint --filter=...[origin/main] --concurrency=4",
"test": "turbo run test --concurrency=4",
"test:affected": "turbo run test --filter=...[origin/main] --concurrency=4",
"updeps": "pnpx taze latest --interactive --recursive --write --install",
"create-package": "turbo gen create-package --args",
"prepare": "is-ci || husky",
"release": "bumpp -r"
},
"dependencies": {
"lodash-es": "^4.17.21",
"prettier": "^3.3.3",
"turbo": "^2.1.2",
"vitest": "^2.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.7.3",
"@vitest/coverage-istanbul": "^2.1.1",
"bumpp": "^9.6.1",
"cross-env": "^7.0.3",
"eslint": "^9.11.1",
"eslint-formatter-compact": "^8.40.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1",
"vitest-markdown-reporter": "^0.1.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"*"
],
"allowedAny": [
"*"
]
}
}
}