-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "waypoint-codex",
"version": "0.13.3",
"description": "Codex-native repository operating system: scaffolding, docs routing, repo-local skills, doctor, and sync.",
"license": "MIT",
"type": "module",
"bin": {
"waypoint": "bin/waypoint.js"
},
"files": [
"bin",
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"changeset": "changeset",
"check": "npm run clean && npm run build && npm test",
"clean": "rm -rf dist",
"dev": "tsx src/cli.ts",
"prepack": "npm run check",
"release": "npm publish --access public",
"version-packages": "changeset version",
"test": "tsx --test tests/**/*.test.ts"
},
"keywords": [
"codex",
"agents",
"automation",
"skills",
"developer-tools"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@types/node": "^24.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@iarna/toml": "^2.2.5"
}
}