generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.26 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
92
93
94
95
{
"name": "solid-jotai",
"type": "module",
"version": "0.3.0",
"private": false,
"packageManager": "[email protected]",
"description": "Primitive and flexible state management for Solid based on Jotai.",
"author": "Robert Soriano <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/solid-jotai#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/solid-jotai.git"
},
"bugs": {
"url": "https://github.com/wobsoriano/solid-jotai/issues"
},
"keywords": [
"solid",
"jotai",
"state"
],
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index/index.cjs",
"import": {
"types": "./dist/index/index.d.ts",
"default": "./dist/index/index.js"
}
},
"./utils": {
"require": "./dist/utils/index.cjs",
"import": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
}
}
},
"main": "./dist/index/index.cjs",
"module": "./dist/index/index.js",
"types": "./dist/index/index.d.ts",
"browser": {},
"typesVersions": {
"*": {}
},
"files": [
"dist",
"utils.d.ts"
],
"scripts": {
"dev": "vite serve dev",
"test": "vitest run",
"build": "tsup",
"prepublishOnly": "pnpm build",
"update-deps": "taze -w && pnpm i",
"typecheck": "tsc --noEmit",
"release": "pnpm build && changeset publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"jotai": ">=2.1.0",
"solid-js": ">=1.6.0"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.38.6",
"@changesets/cli": "^2.27.8",
"@solidjs/testing-library": "^0.7.0",
"esbuild": "^0.17.18",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.40.0",
"eslint-plugin-solid": "^0.12.1",
"jotai": "^2.1.0",
"jsdom": "^22.0.0",
"solid-js": "^1.7.5",
"solid-spring": "^0.0.7",
"taze": "^0.10.1",
"tsup": "^6.7.0",
"tsup-preset-solid": "^0.1.8",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.31.0"
},
"eslintConfig": {
"plugins": [
"solid"
],
"extends": [
"@antfu/eslint-config-ts",
"plugin:solid/typescript"
]
}
}