-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.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
{
"name": "wrinkl",
"version": "1.0.0",
"description": "A context management system for AI-assisted development using ledgers to track features and maintain coding patterns",
"keywords": [
"ai",
"context",
"ledger",
"development",
"cli",
"scaffolding",
"ai-tools",
"cursor",
"copilot",
"claude"
],
"homepage": "https://github.com/orangebread/wrinkl",
"bugs": {
"url": "https://github.com/orangebread/wrinkl/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orangebread/wrinkl.git"
},
"license": "MIT",
"author": "Jeff Lee",
"main": "src/index.js",
"type": "module",
"bin": {
"wrinkl": "./bin/wrinkl.js"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"lint": "biome lint src/",
"format": "biome format --write src/",
"check": "biome check src/",
"prepublishOnly": "npm test && npm run check"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"ora": "^8.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "^2.0.5",
"fs-extra": "^11.3.0",
"inquirer": "^12.6.3",
"jest": "^29.7.0"
},
"engines": {
"node": ">=16.0.0"
}
}