-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 970 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 970 Bytes
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
{
"name": "@profullstack/ai-dot-txt",
"version": "1.1.0",
"description": "CLI tool to generate ai.txt and llms.txt files for AI/LLM policies",
"type": "module",
"main": "src/index.js",
"bin": {
"aidottxt": "src/cli.js"
},
"scripts": {
"test": "mocha tests/**/*.test.js",
"test:watch": "mocha tests/**/*.test.js --watch",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write \"src/**/*.js\" \"tests/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\" \"tests/**/*.js\""
},
"keywords": [
"ai",
"llm",
"ai.txt",
"llms.txt",
"robots.txt",
"cli",
"generator"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"inquirer": "^12.9.6"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"mocha": "^11.0.1",
"prettier": "^3.4.2"
}
}