-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
package.json
File metadata and controls
63 lines (63 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
61
62
63
{
"name": "apcore-cli",
"version": "0.7.0",
"description": "CLI wrapper for the apcore core SDK — exposes apcore modules as CLI commands",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"apcore-cli": "./dist/bin/apcore-cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit && eslint src tests --ext .ts",
"clean": "rm -rf dist"
},
"keywords": [
"apcore",
"cli",
"ai",
"modules"
],
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"apcore-js": ">=0.19.0",
"apcore-toolkit": ">=0.5.0"
},
"peerDependenciesMeta": {
"apcore-toolkit": {
"optional": true
}
},
"dependencies": {
"@sinclair/typebox": "^0.32.0",
"commander": "^12.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"apdev-js": "^0.2.4",
"eslint": "^10.2.1",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"apdev": {
"base_package": "apcore-cli"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}