-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.17 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.17 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
{
"name": "@contentauth/c2pa-node",
"repository": {
"type": "git",
"url": "git+https://github.com/contentauth/c2pa-node-v2.git"
},
"version": "0.5.5",
"description": "Node.js bindings for C2PA",
"main": "dist/index.js",
"type": "module",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"scripts",
"src",
"Cargo.toml",
"Cargo.lock"
],
"engines": {
"node": ">=18.20.2"
},
"scripts": {
"build": "run-s build:rust build:ts",
"build:debug": "run-s build:rust-debug build:ts",
"build:docs": "rimraf docs-typedoc && typedoc --plugin typedoc-plugin-markdown --readme README.md --out docs-typedoc js-src/index.ts && cpy \"docs-typedoc/**\" docs --parents --overwrite --ignore=\"docs-typedoc/classes/index.md\" --ignore=\"docs-typedoc/README.md\" && rimraf docs-typedoc",
"build:rust": "pnpm run build:rust-debug --release",
"build:rust-debug": "cargo build --message-format=json-render-diagnostics > cargo.log",
"build:ts": "tsc -b && cpy index.node dist && cpy index.node js-src && cpy --flat js-src/types.d.ts dist/types",
"changeset:publish": "changeset publish",
"ci": "run-s build:rust-debug build:ts test",
"ci:release": "pnpm run build && changeset tag && pnpm publish --access=public --no-git-checks",
"clean": "rimraf dist target",
"cross": "pnpm run cross-build --release",
"cross-build": "cross build --message-format=json-render-diagnostics > cross.log",
"debug": "pnpm run cargo-build --",
"lint": "cargo clippy && pnpm eslint",
"postbuild:rust-debug": "neon dist < cargo.log",
"postcross-build": "neon dist -m /target < cross.log",
"postinstall": "node scripts/postinstall.cjs",
"release": "run-s build changeset:publish",
"test": "pnpm build:debug && vitest run",
"test:watch": "pnpm build:debug && vitest",
"test:ui": "pnpm build:debug && vitest --ui"
},
"author": "Colin Murphy <colmurph@adobe.com>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@contentauth/c2pa-types": "^0.4.1",
"@eslint/js": "^9.33.0",
"@neon-rs/cli": "0.1.82",
"@types/cli-progress": "^3.11.6",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.17.1",
"@types/unzipper": "^0.10.11",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/ui": "^3.2.4",
"cbor2": "^2.0.1",
"cpy-cli": "^5.0.0",
"eslint": "^9.33.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"sharp": "^0.34.3",
"ts-jest": "^29.4.1",
"typedoc": "^0.28.10",
"typedoc-plugin-markdown": "^4.8.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"keywords": [
"c2pa"
],
"bugs": {
"url": "https://github.com/contentauth/c2pa-node-v2/issues"
},
"homepage": "https://github.com/contentauth/c2pa-node-v2#readme",
"dependencies": {
"cargo-cp-artifact": "^0.1.0",
"cli-progress": "^3.2.0",
"debug": "^4.4.1",
"fs-extra": "^11.3.1",
"mkdirp": "^3.0.0",
"node-fetch": "^3.3.2",
"pkg-dir": "^8.0.0",
"pretty-bytes": "^6.0.0",
"unzipper": "^0.10.0"
},
"packageManager": "pnpm@10.14.0"
}