-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.09 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.09 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
{
"version": "0.0.4",
"name": "solid-fluent-store",
"description": "Solid Fluent Store is a wrapper library for Solid stores. It provides a fluent and type-safe API to interact with a store while maintaining read/write segregation.",
"license": "MIT",
"author": "Jorren",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/JorrenH/solid-fluent-store.git"
},
"homepage": "https://github.com/JorrenH/solid-fluent-store#readme",
"bugs": {
"url": "https://github.com/JorrenH/solid-fluent-store/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": {
"import": "./dist/index.js"
},
"browser": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": "./dist/index.cjs"
},
"scripts": {
"test": "jest && pnpm typecheck",
"build": "tsup",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\"",
"update-deps": "pnpm up -Li",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"babel-jest": "^29.3.1",
"esbuild": "^0.17.0",
"esbuild-plugin-solid": "^0.4.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "2.8.3",
"solid-jest": "^0.2.0",
"solid-js": "^1.6.0",
"tsup": "^6.5.0",
"tsup-preset-solid": "^0.0.5",
"typescript": "^4.9.4"
},
"keywords": [
"solid",
"store",
"fluent"
],
"packageManager": "pnpm@7.20.0",
"jest": {
"preset": "solid-jest/preset/browser",
"testEnvironment": "jsdom"
}
}