-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "@openvcs/sdk",
"version": "0.2.8",
"description": "OpenVCS SDK CLI for plugin scaffolding and .ovcsp tar.gz packaging",
"license": "GPL-3.0-or-later",
"homepage": "https://openvcs.app/",
"repository": {
"type": "git",
"url": "https://github.com/Open-VCS/OpenVCS-SDK"
},
"bugs": {
"url": "https://github.com/Open-VCS/OpenVCS-SDK/issues"
},
"engines": {
"node": ">=18"
},
"bin": {
"openvcs": "bin/openvcs.js"
},
"exports": {
"./runtime": {
"types": "./lib/runtime/index.d.ts",
"require": "./lib/runtime/index.js",
"default": "./lib/runtime/index.js"
},
"./types": {
"types": "./lib/types/index.d.ts",
"require": "./lib/types/index.js",
"default": "./lib/types/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "node scripts/build-sdk.js",
"test": "npm run build && npm run test:types && node --test test/*.test.js",
"test:types": "node ./node_modules/typescript/bin/tsc -p test/tsconfig.json",
"prepack": "npm run build",
"preopenvcs": "npm run build",
"openvcs": "node bin/openvcs.js"
},
"devDependencies": {
"@types/node": "^25.3.3",
"typescript": "^5.8.2"
},
"dependencies": {
"tar": "^7.4.3"
},
"files": [
"src/",
"bin/",
"lib/",
"test/",
"README.md",
"LICENSE"
]
}