-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.14 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.14 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "starfx",
"version": "0.16.0",
"description": "A micro-mvc framework for react apps",
"type": "module",
"files": ["/dist"],
"sideEffects": false,
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.js",
"scripts": {
"test": "vitest --exclude examples",
"lint": "biome check --write",
"fmt": "biome check --write --linter-enabled=false",
"ci": "biome ci .",
"template": "tsx ./api-type-template.mts",
"build": "tsx ./build.mts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fxforge/starfx.git"
},
"contributors": [
"Eric Bower <me@erock.io>",
"Jacob Bolda <me@jacobbolda.com>",
"Vlad <vladmarginean@softwiz.ro>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fxforge/starfx/issues"
},
"homepage": "https://github.com/fxforge/starfx#readme",
"dependencies": {
"effection": "^4",
"immer": "^11.1.3",
"reselect": "^5.1.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.29",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"execa": "^9.6.0",
"nock": "^14.0.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.1.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.2.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"react-redux": "^9"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"react-redux": {
"optional": true
}
},
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./react": {
"import": {
"types": "./dist/types/react.d.ts",
"default": "./dist/esm/react.js"
},
"require": {
"types": "./dist/types/react.d.ts",
"default": "./dist/cjs/react.js"
}
},
"./package.json": "./package.json"
}
}