-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 2.59 KB
/
package.json
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
{
"name": "c2pa-node",
"repository": {
"type": "git",
"url": "https://github.com/contentauth/c2pa-node.git"
},
"version": "0.5.23",
"description": "Node.js bindings for C2PA",
"main": "dist/js-src/index.js",
"types": "dist/js-src/index.d.ts",
"files": [
"dist/js-src",
"dist/src",
"dist/Cargo.toml",
"dist/Cargo.lock",
"scripts/postinstall.js",
"scripts/lib/download-test-certs.js",
"tests/fixtures/certs"
],
"engines": {
"node": ">=16.13.0"
},
"scripts": {
"dev": "node ./scripts/dev-reload.js",
"build:rust": "cargo-cp-artifact -nc generated/c2pa.node -- cargo build --message-format=json-render-diagnostics --release",
"build:ts": "tsc -b && cpy js-src/types.d.ts dist",
"build:assets": "cpy src Cargo.* generated dist",
"build:docs": "typedoc --plugin typedoc-plugin-markdown --readme none --out api-docs js-src/index.ts",
"build": "run-s build:rust build:ts build:docs build:assets",
"postinstall": "node ./scripts/postinstall.js",
"download-test-certs": "node ./scripts/download-test-certs.js",
"ci": "pnpm build && cargo test --release && jest",
"changeset:publish": "changeset publish",
"release": "run-s build changeset:publish",
"test": "cargo test && jest",
"test:watch": "cargo test && jest --watch --runInBand --detectOpenHandles --forceExit",
"clean": "rimraf dist generated target"
},
"author": "Dave Kozma <dkozma@adobe.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.1",
"@types/node-fetch": "^2.6.11",
"@types/pixelmatch": "^5.2.6",
"chokidar": "^3.6.0",
"cpy-cli": "^4.2.0",
"jest": "^29.7.0",
"nock": "^13.5.5",
"pixelmatch": "^5.3.0",
"prettier": "2.8.8",
"rimraf": "^5.0.10",
"tempy": "^1.0.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.6.2"
},
"keywords": [
"c2pa"
],
"bugs": {
"url": "https://github.com/contentauth/c2pa-node/issues"
},
"homepage": "https://github.com/contentauth/c2pa-node#readme",
"dependencies": {
"@changesets/cli": "^2.27.8",
"cargo-cp-artifact": "^0.1.9",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"mkdirp": "^3.0.1",
"node-fetch": "^2.7.0",
"npm-run-all": "^4.1.5",
"pkg-dir": "^5.0.0",
"pretty-bytes": "^5.6.0",
"sharp": "0.32.6",
"unzipper": "^0.10.14"
},
"packageManager": "pnpm@8.15.8+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392"
}