-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.42 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
{
"name": "@carere/solux",
"version": "3.3.2",
"description": "Flux implementation based on SolidJs reactivity",
"keywords": [
"Solid",
"flux",
"redux",
"rxjs",
"state"
],
"bugs": "https://github.com/carere/solux/issues",
"repository": "github:carere/solux",
"license": "MIT",
"author": "Kevin Abatan <[email protected]> (https://github.com/carere)",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsup",
"format": "biome format --write .",
"lint": "biome lint --write ."
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"rxjs": "^7.8.1",
"solid-js": "^1.9.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.1.13",
"@types/node": "^22.9.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild-plugin-solid": "^0.6.0",
"lefthook": "^1.8.2",
"semantic-release": "^24.2.0",
"sort-package-json": "^2.10.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"rxjs": "^7.8.1"
}
}