-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.33 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": "update-kit",
"version": "1.1.0",
"description": "Production-grade, embeddable update orchestration framework with policy, verification, rollback, and auditability.",
"keywords": [
"update",
"autoupdate",
"orchestration",
"rollback",
"audit",
"typescript",
"cli",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/d-wwei/update-kit.git"
},
"homepage": "https://github.com/d-wwei/update-kit",
"bugs": {
"url": "https://github.com/d-wwei/update-kit/issues"
},
"type": "module",
"bin": {
"update-kit": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapter": {
"types": "./dist/adapter.d.ts",
"import": "./dist/adapter.js"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js"
}
},
"files": [
"dist",
"README.md",
"update.config.example.json",
"docs/INTEGRATION.md",
"docs/AGENT_INTEGRATION.md",
"docs/QUICK_START.md",
"examples/node-ts"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "tsc -p tsconfig.json",
"test": "tsx --test tests/**/*.test.ts"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}