generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 2 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
{
"name": "@nanostores/solid",
"type": "module",
"version": "0.5.0",
"packageManager": "pnpm@9.11.0",
"description": "Solid integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores.",
"author": "Robert Soriano <sorianorobertc@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/nanostores/solid#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nanostores/solid.git"
},
"keywords": [
"store",
"state",
"state manager",
"solid"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest watch",
"release": "bumpp --commit --tag --push && npm publish",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{ts,tsx}",
"lint:types": "tsc --noEmit"
},
"peerDependencies": {
"nanostores": "^0.9.0 || ^0.10.0 || ^0.11.0",
"solid-js": "^1.6.0"
},
"devDependencies": {
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.5.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"bumpp": "^9.5.2",
"concurrently": "^9.0.1",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^22.0.0",
"nanodelay": "^2.0.2",
"nanostores": "^0.11.3",
"prettier": "3.0.0",
"solid-js": "^1.9.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.1.1"
}
}