-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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": "@quiltt/core",
"version": "3.9.2",
"description": "Javascript API client and utilities for Quiltt",
"keywords": [
"quiltt",
"typescript"
],
"homepage": "https://github.com/quiltt/quiltt-js/tree/main/packages/core#readme",
"repository": {
"type": "git",
"url": "https://github.com/quiltt/quiltt-js.git",
"directory": "packages/core"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/quiltt/quiltt-js/issues"
},
"sideEffects": [],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"src/**",
"CHANGELOG.md"
],
"main": "dist/index.js",
"scripts": {
"build": "bunchee",
"clean": "rimraf .turbo dist",
"dev": "bunchee --watch",
"lint": "TIMING=1 biome check src/ tests/ --fix",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@rails/actioncable": "^7.2.201",
"braces": "^3.0.3",
"cross-fetch": "^4.0.0",
"graphql": "^16.10.0",
"graphql-ruby-client": "^1.14.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.2",
"@types/rails__actioncable": "6.1.11",
"@types/react": "18.3.12",
"bunchee": "5.6.1",
"rimraf": "6.0.1",
"typescript": "5.7.2"
},
"tags": [
"quiltt"
],
"publishConfig": {
"access": "public"
}
}