-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 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
{
"name": "@appsutra/data",
"version": "0.1.0",
"description": "AppSutra Data Package - Community-curated SaaS product listings for India",
"private": false,
"type": "module",
"main": "dist/listings.json",
"files": [
"dist",
"schema",
"README.md",
"LICENSE"
],
"scripts": {
"build:data": "tsx scripts/build-data.ts",
"validate": "node scripts/validate.mjs",
"linkcheck": "node scripts/linkcheck.mjs",
"test": "npm run validate && npm run linkcheck",
"prepublishOnly": "npm run test && npm run build:data"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalesUpLabs/appsutra.git"
},
"keywords": [
"saas",
"directory",
"india",
"listings",
"data-package",
"github",
"open-source"
],
"author": "SalesUp Labs",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"slugify": "^1.6.6",
"undici": "^6.6.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.19.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}