-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.89 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.89 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
82
83
84
85
86
87
{
"name": "solid-services",
"version": "4.3.3",
"description": "Solid.js library adding a services layer for global shared state.",
"keywords": [
"solidjs"
],
"homepage": "https://github.com/Exelord/solid-services",
"license": "MIT",
"repository": "github:exelord/solid-services",
"source": "./dist/src/index.js",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"imports": {
"#src/*": "./src/*"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/solid-services.js",
"require": "./dist/solid-services.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vp test run",
"test:watch": "vp test",
"test:ui": "vp test --ui",
"coverage": "vp test run --coverage",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
"check": "vp check",
"prepublishOnly": "pnpm run build",
"build": "vp pack",
"dev": "vp pack --watch",
"release": "release-it"
},
"dependencies": {
"@solid-primitives/rootless": "^1.5.3"
},
"devDependencies": {
"@vitest/ui": "^4.1.4",
"release-it": "^19.2.4",
"solid-js": "^1.9.12",
"typescript": "^6.0.2",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"solid-js": "^1.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.14.1",
"onFail": "download"
}
},
"packageManager": "pnpm@10.33.0",
"release-it": {
"git": {
"commitMessage": "v${version}",
"tagAnnotation": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"before:init": [
"pnpm test"
]
}
}
}