-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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
{
"name": "@aredotna/cli",
"version": "0.8.1",
"description": "Are.na from the terminal",
"type": "module",
"bin": {
"arena": "./dist/cli.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.tsx",
"generate": "openapi-typescript https://api.are.na/v3/openapi -o src/api/schema.d.ts",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck",
"test": "tsx --test src/**/*.test.ts",
"check": "npm run lint && npm run test && npm run build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepack": "npm run build",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,json,md}": "prettier --write"
},
"dependencies": {
"ink": "^6.8.0",
"openapi-fetch": "^0.17.0",
"react": "^19.0.0",
"swr": "^2.4.1",
"terminal-image": "^4.2.0"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@types/react": "^19.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.1",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
}
}