-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
{
"name": "@ibnlanre/signals",
"version": "0.0.8",
"description": "A simple reactive state management library for React, built with hooks",
"homepage": "https://github.com/ibnlanre/signals#readme",
"type": "module",
"scripts": {
"bundle": "tsup",
"lint": "eslint --ext .ts .",
"test": "vitest -- --typecheck",
"package": "npm publish --access public",
"dry-run": "npm pack --dry-run"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"peerDependencies": {
"react": ">16.7.0",
"react-dom": ">16.7.0"
},
"engines": {
"node": ">=14"
},
"author": "Ridwan Olanrewaju <olaitanlanre28@gmail.com>",
"repository": {
"url": "git+https://github.com/ibnlanre/signals.git",
"type": "git",
"publishConfig": {
"access": "public"
}
},
"bugs": {
"url": "https://github.com/ibnlanre/signals/issues"
},
"license": "MIT",
"keywords": [
"signal",
"solid-js",
"solid",
"reactive",
"reactivity",
"react",
"angular",
"svelte",
"vue",
"state"
],
"devDependencies": {
"@testing-library/react": "^15.0.2",
"@vitejs/plugin-react": "^4.2.1",
"jsdom": "^24.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}