-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.41 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
{
"name": "@oakfang/atmol",
"version": "0.3.0",
"description": "A reactive state management library for the web",
"author": {
"name": "Alon Niv",
"email": "oakfang@gmail.com",
"url": "https://github.com/oakfang"
},
"homepage": "https://github.com/oakfang/atmol",
"repository": {
"type": "git",
"url": "https://github.com/oakfang/atmol.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"dle": "tsup",
"lint": "bunx @biomejs/biome check --write ./lib"
},
"exports": {
".": {
"import": "./dist/base/index.js",
"types": "./dist/base/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
},
"./reaction": {
"import": "./dist/reaction/index.js",
"types": "./dist/reaction/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
}
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@happy-dom/global-registrator": "^14.12.0",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/bun": "latest",
"@types/react": "^18.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"tsup": "^8.0.2"
},
"peerDependencies": {
"typescript": "^5.0.0",
"react": "^18.3.1"
},
"files": [
"dist",
"lib"
]
}