-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.8 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
{
"name": "solid-tasks",
"version": "0.3.0",
"description": "Manage and control concurrent and async operations in Solid.js apps. Forget about manual cancellation, concurrency side-effects and make your app user proof.",
"keywords": [
"actions",
"concurrency",
"jobs",
"promises",
"solidjs",
"tasks"
],
"homepage": "https://github.com/Exelord/solid-tasks",
"license": "MIT",
"author": {
"name": "Maciej Kwaśniak",
"email": "contact@exelord.com",
"url": "https://exelord.com"
},
"repository": "github:exelord/solid-tasks",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check": "vp check",
"coverage": "vp test run --coverage",
"prepublishOnly": "npm run build",
"release": "release-it"
},
"dependencies": {
"solid-proxies": "^2.0.2"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@typescript/native-preview": "7.0.0-dev.20260509.2",
"release-it": "^20.2.0",
"solid-js": "^1.9.13",
"typescript": "^6.0.3",
"vite-plus": "latest"
},
"peerDependencies": {
"solid-js": "^1.7.0"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "npm@11.16.0",
"release-it": {
"git": {
"commitMessage": "v${version}",
"tagAnnotation": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"before:init": [
"npm run test"
]
}
}
}