-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.21 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
{
"name": "solid-tasks",
"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.",
"version": "0.2.0",
"license": "MIT",
"homepage": "https://github.com/Exelord/solid-tasks",
"repository": "github:exelord/solid-tasks",
"keywords": [
"solidjs",
"tasks",
"jobs",
"concurrency",
"promises",
"actions"
],
"author": {
"name": "Maciej Kwaśniak",
"email": "[email protected]",
"url": "https://exelord.com"
},
"files": [
"dist"
],
"main": "./dist/solid-tasks.cjs",
"module": "./dist/solid-tasks.js",
"types": "./dist/types/index.d.ts",
"source": "./dist/src/index.js",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/solid-tasks.js",
"require": "./dist/solid-tasks.cjs"
}
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"dev": "npm-run-all --parallel 'build:** -- --watch'",
"build": "npm-run-all --parallel build:** && npm run types",
"build:js": "vite build",
"build:source": "tsc",
"types": "tsc --emitDeclarationOnly --declaration --outDir ./dist/types",
"release": "release-it",
"test-ct": "playwright test -c playwright-ct.config.ts"
},
"release-it": {
"git": {
"commitMessage": "v${version}",
"tagAnnotation": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"before:init": [
"vitest run"
]
}
},
"peerDependencies": {
"solid-js": "^1.7.0"
},
"dependencies": {
"solid-proxies": "^1.0.2"
},
"devDependencies": {
"@playwright/experimental-ct-solid": "^1.39.0",
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.10",
"@vitest/browser": "^0.34.6",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/ui": "^0.34.6",
"npm-run-all": "^4.1.5",
"release-it": "^16.2.1",
"solid-js": "^1.7.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
}
}