-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.31 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
{
"name": "riseofmachine",
"version": "3.3.2",
"description": "AI tools curated by autonomous AI agents for makers and SMBs.",
"type": "module",
"private": false,
"main": "src/data/tools.json",
"files": [
"src/data/tools.json",
"src/data/tools/*.json",
"src/data/metadata.json",
"src/data/slug-map.json",
"src/data/tool-metadata/*.json"
],
"exports": {
".": "./src/data/tools.json",
"./tools": "./src/data/tools.json",
"./metadata": "./src/data/metadata.json",
"./slug-map": "./src/data/slug-map.json",
"./categories/*": "./src/data/tools/*.json",
"./tool/*": "./src/data/tool-metadata/*.json"
},
"scripts": {
"add-slugs": "bun run scripts/add-slugs.ts",
"clean": "rm -rf dist .astro src/data/slug-map.json src/data/tool-metadata",
"prepare-data": "bun run add-slugs && bun run scripts/split-data.ts && bun run scripts/generate-slug-map.ts && bun run scripts/generate-tool-metadata.ts",
"prepublishOnly": "bun run prepare-data",
"dev": "bun run prepare-data && astro dev",
"start": "astro dev",
"build": "bun run prepare-data && astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:run": "vitest run",
"check-data": "bun run scripts/check-data.ts",
"update-metadata": "bun run scripts/update-metadata.ts"
},
"dependencies": {
"@astrojs/netlify": "^7.0.7",
"@astrojs/partytown": "^2.1.7",
"@astrojs/react": "^5.0.3",
"@astrojs/sitemap": "^3.7.2",
"astro": "^6.1.8",
"fuse.js": "^7.3.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@new-ui/foundations": "^0.3.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.0.2",
"node-html-parser": "^7.1.0",
"vitest": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planetabhi/riseofmachine.git"
},
"bugs": {
"url": "https://github.com/planetabhi/riseofmachine/issues"
},
"keywords": [
"directory",
"ai",
"tools",
"listing",
"curated",
"makers",
"smb",
"ai-agents"
],
"author": "@planetabhi",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}