-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.99 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
{
"name": "ff1-cli",
"version": "1.0.11",
"description": "CLI to fetch NFT information and build DP1 playlists using Grok API",
"main": "dist/index.js",
"bin": {
"ff1": "dist/index.js"
},
"files": [
"dist",
"docs",
"config.json.example",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "node -e \"const fs=require('fs'); fs.rmSync('dist',{ recursive:true, force:true }); fs.rmSync('release',{ recursive:true, force:true });\"",
"build": "tsc",
"typecheck": "tsc --noEmit",
"bundle": "node build.js",
"bundle:dev": "node build.js --dev",
"release:asset": "./scripts/release/build-asset.sh",
"start": "node dist/index.js",
"dev": "tsx index.ts",
"smoke": "npm run build && node dist/index.js validate examples/sample-playlist.json && node dist/index.js config validate",
"check": "npm run format:check && npm run lint && npm run test",
"verify": "npm run check && npm run smoke",
"prepublishOnly": "npm run verify",
"test": "tsx --test tests/**/*.test.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,ts}\"",
"format:check": "prettier --check \"**/*.{js,ts}\""
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nft",
"playlist",
"dp1",
"grok",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"bonjour-service": "^1.3.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"dp1-js": "^1.1.0",
"fuzzysort": "^3.1.0",
"openai": "^4.58.1",
"viem": "^2.38.2"
},
"devDependencies": {
"@types/node": "^24.7.1",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"esbuild": "^0.25.10",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}