-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.11 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
{
"name": "nanostores-persistent-solid",
"version": "0.1.7",
"description": "Drop-in replacement for Nano Stores Persistent and Nano Stores Solid that adds support for persistent atoms/maps in Solid SSR environments.",
"keywords": [
"nanostores",
"persistent",
"solid",
"store",
"localStorage",
"state",
"state manager"
],
"author": "Vance Tan <vancetan.dev>",
"license": "MIT",
"homepage": "https://github.com/Kruvt/nanostores-persistent-solid",
"repository": {
"type": "git",
"url": "https://github.com/Kruvt/nanostores-persistent-solid.git"
},
"publishConfig": {
"directory": "package"
},
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest watch",
"prepublishOnly": "rimraf ./package && pnpm run build && clean-publish",
"release": "bumpp && pnpm publish"
},
"peerDependencies": {
"nanostores": "^0.6.0",
"solid-js": ">=1.4.0"
},
"dependencies": {
"nanostores": "^0.6.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@types/jsdom": "^20.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"bumpp": "^8.2.1",
"clean-publish": "^4.0.1",
"jsdom": "^20.0.0",
"rimraf": "^3.0.2",
"solid-js": "^1.5.3",
"solid-testing-library": "^0.3.0",
"tsup": "^6.2.3",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-solid": "^2.3.0",
"vitest": "^0.22.1"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": true,
"singleQuote": true,
"trailingComma": "none"
},
"clean-publish": {
"package-manager": "pnpm",
"withoutPublish": true,
"tempDir": "package",
"files": [
".gitignore",
"tsconfig.json",
"tsup.config.ts",
"vitest.config.ts",
"vitest.setup.ts"
],
"fields": [
"scripts"
]
}
}