-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "sprigcode",
"private": true,
"version": "0.1.3",
"description": "Typed semantic code-edit transactions for tools and agents.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/moengadaniel/sprigcode.git"
},
"bugs": {
"url": "https://github.com/moengadaniel/sprigcode/issues"
},
"homepage": "https://github.com/moengadaniel/sprigcode#readme",
"files": [
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"GOVERNANCE.md",
"ROADMAP.md",
"SECURITY.md"
],
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "npm run build -w @sprigcode/core && npm run build -w @sprigcode/schema && npm run build -w @sprigcode/testkit && npm run build -w @sprigcode/ts && npm run build -w @sprigcode/cli",
"lint": "eslint \"packages/**/*.ts\"",
"typecheck": "tsc -b --pretty false",
"test": "npm test --workspaces --if-present",
"test:golden": "npm run test:golden -w @sprigcode/ts",
"test:smoke": "npm run build && node scripts/smoke.mjs",
"test:npm-smoke": "npm run build && node scripts/npm-smoke.mjs"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"ajv": "^8.17.1",
"eslint": "^9.25.1",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}