-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
73 lines (73 loc) · 2.06 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
{
"name": "@maverick-js/signals",
"description": "A lightweight (~1kB) library for creating reactive observables via functions.",
"license": "MIT",
"version": "6.0.0",
"type": "module",
"types": "dist/types/index.d.ts",
"module": "dist/prod/index.js",
"sideEffects": false,
"files": [
"dist/",
"*.d.ts"
],
"scripts": {
"build": "rimraf dist && rollup -c && pnpm types",
"types": "tsc -p tsconfig.build.json",
"format": "prettier src --write --loglevel warn",
"test": "vitest run",
"test:watch": "vitest watch",
"test:gc": "node --expose-gc ./vitest.js",
"test:gc:watch": "node --expose-gc ./vitest.js --watch",
"bench:layers": "pnpm build && node bench/layers.js",
"validate": "pnpm test && pnpm test:gc && pnpm build",
"release": "pnpm validate && standard-version && git push --follow-tags origin main && npm publish"
},
"contributors": [
"Rahim Alwer <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/maverick-js/signals.git"
},
"bugs": {
"url": "https://github.com/maverick-js/signals/issues"
},
"devDependencies": {
"@preact/signals-core": "^1.3.0",
"@reactively/core": "^0.0.8",
"@types/node": "^18.0.0",
"cellx": "^1.10.26",
"cli-table": "^0.3.11",
"esbuild": "^0.18.1",
"kleur": "^4.1.5",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"rollup": "^3.25.1",
"rollup-plugin-esbuild": "^5.0.0",
"s-js": "^0.4.9",
"solid-js": "^1.7.0",
"standard-version": "^9.5.0",
"typescript": "^5.0.0",
"vite": "^4.0.0",
"vitest": "^0.30.0"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"test": "./dist/dev/index.js",
"development": "./dist/dev/index.js",
"default": "./dist/prod/index.js"
},
"./map": {
"types": "./dist/types/map.d.ts",
"test": "./dist/dev/map.js",
"development": "./dist/dev/map.js",
"default": "./dist/prod/map.js"
},
"./package.json": "./package.json"
}
}