-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.76 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.76 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@arcadeai/arcadejs",
"version": "2.4.1",
"description": "The official TypeScript library for the Arcade API",
"author": "Arcade <dev@arcade.dev>",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"type": "commonjs",
"repository": "github:ArcadeAI/arcade-js",
"license": "MIT",
"packageManager": "pnpm@10.30.1",
"files": [
"**/*"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "./scripts/test",
"build": "./scripts/build",
"prepublishOnly": "echo 'to publish, run pnpm build && (cd dist; pnpm publish)' && exit 1",
"format": "./scripts/format",
"prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build && ./scripts/utils/git-swap.sh; fi",
"tsn": "ts-node -r tsconfig-paths/register",
"lint": "./scripts/lint",
"fix": "./scripts/format"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.4.0",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"eslint": "^9.39.1",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-unused-imports": "^4.1.4",
"iconv-lite": "^0.6.3",
"jest": "^29.4.0",
"prettier": "^3.0.0",
"publint": "^0.2.12",
"ts-jest": "^29.1.0",
"ts-node": "^10.5.0",
"tsc-multi": "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz",
"tsconfig-paths": "^4.0.0",
"tslib": "^2.8.1",
"typescript": "5.8.3",
"typescript-eslint": "8.31.1",
"zod": "^4.3.6"
},
"bin": {
"arcadeai-arcadejs": "bin/cli"
},
"overrides": {
"minimatch": "^9.0.5"
},
"pnpm": {
"overrides": {
"minimatch": "^9.0.5",
"diff@>=4.0.0 <4.0.4": ">=4.0.4 <5.0.0",
"minimatch@>=9.0.0 <9.0.6": ">=9.0.6 <10.0.0",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7 <10.0.0",
"ajv@<6.14.0": ">=6.14.0 <7.0.0",
"flatted@<3.4.0": ">=3.4.0 <4.0.0",
"flatted@<=3.4.1": ">=3.4.2 <4.0.0",
"handlebars@>=4.0.0 <=4.7.8": ">=4.7.9",
"brace-expansion@>=2.0.0 <2.0.3": ">=2.0.3 <3.0.0",
"handlebars@>=4.0.0 <4.7.9": ">=4.7.9",
"picomatch@<2.3.2": ">=2.3.2 <3.0.0",
"handlebars@>=4.6.0 <=4.7.8": ">=4.7.9"
}
},
"resolutions": {
"minimatch": "^9.0.5"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./lib": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.mjs",
"require": "./dist/lib/index.js",
"default": "./dist/lib/index.mjs"
},
"./*.mjs": {
"default": "./dist/*.mjs"
},
"./*.js": {
"default": "./dist/*.js"
},
"./*": {
"import": "./dist/*.mjs",
"require": "./dist/*.js"
}
}
}