-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.18 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
{
"name": "solid-proxies",
"version": "1.0.4",
"description": "Solid.js library adding signaling to built-in non-primitives",
"info": "This package provides signaled versions of Javascript's built-in objects. Thanks to it, all theirs properties will be automatically tracked while using standard API. That means all operations like array's `push`, `slice` or direct index access `track['me']` will only trigger an update of specific values. The granular reactivity will make sure your effects will not rerun without a need.",
"homepage": "https://github.com/Exelord/solid-proxies",
"contributors": [
{
"name": "Maciej Kwaśniak",
"email": "[email protected]",
"url": "https://exelord.com"
}
],
"keywords": [
"solidhack",
"best_ecosystem",
"solidjs"
],
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/solid-proxies.cjs",
"module": "./dist/solid-proxies.js",
"types": "./dist/types/index.d.ts",
"source": "./dist/src/index.js",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/solid-proxies.js",
"require": "./dist/solid-proxies.cjs",
"types": "./dist/types/index.d.ts"
}
},
"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"
},
"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.0.0"
},
"devDependencies": {
"@vitest/ui": "^2.0.5",
"c8": "^10.1.2",
"npm-run-all": "^4.1.5",
"release-it": "^17.6.0",
"solid-js": "^1.8.22",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vitest": "^2.0.5"
}
}