-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "react-ronin",
"version": "2.3.3",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"description": "Access the RONIN data platform via React.",
"scripts": {
"dev": "bun run build -- --watch",
"build": "tsc --project tsconfig.json",
"format": "bun x biome format --write .",
"lint": "bun run lint:tsc && bun run lint:biome --",
"lint:biome": "biome check --apply .",
"lint:tsc": "tsc --noEmit --pretty",
"test": "bun test",
"prepare": "husky"
},
"files": ["dist"],
"repository": "ronin-co/react-ronin",
"homepage": "https://github.com/ronin-co/react-ronin",
"keywords": ["ronin", "react", "client", "database", "orm"],
"lint-staged": {
"**/*": ["bunx @biomejs/biome format --write"]
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types.js",
"types": "./dist/types.d.ts"
}
},
"typesVersions": {
"*": {
"*": ["dist/index.d.ts"],
"types": ["dist/types.d.ts"]
}
},
"dependencies": {
"ronin": "4.2.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@types/bun": "1.1.6",
"@types/react": "18.3.3",
"@types/web": "0.0.155",
"husky": "9.1.4",
"lint-staged": "15.2.9",
"msw": "2.3.5",
"react": "18.3.1",
"typescript": "5.5.4"
},
"peerDependencies": {
"react": ">=18.3.1"
},
"peerDependenciesMeta": {
"react": {
"optional": false
}
}
}