-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.21 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.21 KB
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
{
"name": "@toreda/lifecycle",
"version": "2.2.1",
"description": "Lifecycle flows with callbacks and event handlers similar to Android, Objective C, Swift.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": "https://github.com/toreda/lifecycle",
"author": "Toreda, Inc.",
"license": "MIT",
"private": false,
"public": true,
"sideEffects": false,
"devDependencies": {
"@8hobbies/typedoc-plugin-404": "^3.1.0",
"@babel/traverse": "^7.24.7",
"@knodes/typedoc-plugin-code-blocks": "^0.23.4",
"@swc/core": "^1.11.8",
"@swc/helpers": "^0.5.15",
"@swc/jest": "^0.2.37",
"@toreda/build-tools": "^0.8.0",
"@toreda/eslint-config": "^2.2.0",
"@toreda/log": "^0.6.16",
"@toreda/prettier-config": "^1.0.1",
"@toreda/types": "^2.16.0",
"@types/eslint": "^8.56.10",
"@types/gulp": "^4.0.17",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.34",
"@typescript-eslint/parser": "^8.0.0-alpha.34",
"@typescript-eslint/typescript-estree": "^8.26.0",
"@typhonjs-typedoc/typedoc-pkg": "^0.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"madge": "^8.0.0",
"prettier": "^3.5.3",
"typedoc": "^0.26.2",
"typescript": "^5.8.2"
},
"resolutions": {
"chokidar": "^3.0.0",
"postcss": "^8.4.31",
"glob-parent": "^5.1.2",
"@babel/traverse": "^7.24.7",
"word-wrap": "^1.2.4",
"semver": "^7.5.2"
},
"keywords": [
"component-lifecycle",
"lifecycle-hooks",
"typescript-action-handlers"
],
"peerDependencies": {
"@toreda/log": "^0.6.16",
"@toreda/types": "^2.16.0"
},
"scripts": {
"build": "yarn build:prod",
"build:prod": "yarn gulp --prod",
"build:dev": "yarn gulp --dev",
"test": "yarn jest --coverage --maxWorkers=50%",
"test:dev": "yarn jest --coverage=false --maxWorkers=25% --verbose=false",
"make:docs": "yarn typedoc --options ./typedoc.config.js --plugin @knodes/typedoc-plugin-code-blocks",
"make:depgraph": "yarn madge src/index.ts --image dependency-graph.png"
},
"engines": {
"node": ">= 22"
},
"prettier": "@toreda/prettier-config"
}