-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (80 loc) · 2.02 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
{
"name": "inertjs",
"type": "module",
"version": "0.1.25",
"source": "./index.ts",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/types/index.d.ts",
"files": [
"./build"
],
"exports": {
"./*": {
"types": "./build/types/*.d.ts",
"require": "./build/cjs/*.js",
"import": "./build/esm/*.js",
"default": "./build/esm/*.js"
},
".": {
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js",
"default": "./build/esm/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"up": "bun upgrade ; bunx taze -a latest -w ; bun update --force ; bun run build ",
"format": "bunx @biomejs/biome format --write ./src/ ./test/",
"test": "bun test --watch",
"clean": "rm -Rf node_modules",
"publish": "",
"lint": "npx @biomejs/biome lint ./src ./test",
"esm": "tsc -b ./tsconfig.esm.json ",
"cjs": "tsc -b ./tsconfig.cjs.json ",
"types": "tsc -b ./tsconfig.types.json ",
"build": "tsc -b ./tsconfig.esm.json ./tsconfig.cjs.json ./tsconfig.types.json",
"build:clean": "rm -Rf ./build/"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.12.3",
"@types/bun": "^1.1.6",
"@types/node": "^22.1.0",
"biome": "^0.3.3",
"code-narrator": "^1.0.17",
"npm-run-all": "^4.1.5",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/react": "^18.3.3",
"react": "^18.3.1"
},
"peerDependencies": {
"@types/react-dom": "^18.3.0",
"react-dom": "^18.3.1"
},
"license": "Apache-2.0",
"author": "Dima Kaigorodov",
"description": "An atomic state management library for React",
"keywords": [
"react",
"state",
"manager",
"management",
"recoil",
"jotai",
"atom",
"atomic",
"charm",
"charmjs",
"inert",
"inertjs",
"zustand",
"store"
],
"homepage": "https://jsr.io/inert",
"repository": {
"type": "git",
"url": "git+https://github.com/kaigorod/inert.git"
}
}