-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.47 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "scrollcase",
"version": "1.0.0",
"schemaVersion": "3",
"description": "Pack an entire Python environment and the code it runs into a single, self-contained, portable and signed box.",
"license": "Apache-2.0",
"author": "Lorenzo S. (https://github.com/suffro)",
"repository": {
"type": "git",
"url": "git+https://github.com/suffro/scrollcase.git"
},
"homepage": "https://scrollcase.dev",
"bugs": {
"url": "https://github.com/suffro/scrollcase/issues"
},
"keywords": [
"packaging",
"conda",
"conda-forge",
"pixi",
"conda-pack",
"python",
"reproducible-builds",
"lockfile",
"signing",
"ed25519",
"relocatable",
"air-gapped",
"scientific-computing",
"ml"
],
"type": "module",
"engines": {
"node": ">=20"
},
"exports": {
"./contract": {
"types": "./src/contract/index.d.mts",
"import": "./src/contract/index.mjs"
},
"./contract/browser": {
"types": "./src/contract/browser.d.mts",
"import": "./src/contract/browser.mjs"
},
"./contract/types": {
"types": "./src/contract/types/index.d.ts"
},
"./build": {
"types": "./src/build/index.d.mts",
"import": "./src/build/index.mjs"
},
"./consumer": {
"types": "./src/consumer/index.d.mts",
"import": "./src/consumer/index.mjs"
},
"./contract/schema/*.json": "./src/contract/schema/*.json",
"./contract/fixtures/*.json": "./src/contract/fixtures/*.json",
"./sign": {
"types": "./src/sign/index.d.mts",
"import": "./src/sign/index.mjs"
}
},
"files": [
"src",
"CHANGELOG.md",
"LICENSE",
"NOTICE",
"README.md"
],
"scripts": {
"test": "vitest run --config tests/unit/vitest.config.mjs",
"docs:schemas": "node scripts/sync-docs-schemas.mjs",
"python:bump": "node scripts/bump-python-version.mjs",
"types": "node scripts/generate-contract-types.mjs && node scripts/generate-runtime-types.mjs",
"types:check": "node scripts/generate-contract-types.mjs --check && node scripts/generate-runtime-types.mjs --check",
"prepublishOnly": "npm test && npm run types:check"
},
"dependencies": {
"tar": "7.5.22",
"yauzl": "3.4.0",
"yazl": "3.3.1"
},
"devDependencies": {
"@types/node": "^24.13.3",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"json-schema-to-typescript": "^15.0.4",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
},
"bin": {
"scrollcase": "src/cli.mjs"
}
}