-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.75 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@trustnxt/c2pa-ts",
"version": "0.6.0",
"type": "module",
"author": "TrustNXT GmbH <[email protected]>",
"license": "Apache-2.0",
"description": "Pure TypeScript implementation of C2PA manifest reading, validation, and creation",
"repository": {
"type": "git",
"url": "git+https://github.com/TrustNXT/c2pa-ts.git"
},
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./asset": {
"types": "./dist/src/asset/index.d.ts",
"import": "./dist/src/asset/index.js"
},
"./cose": {
"types": "./dist/src/cose/index.d.ts",
"import": "./dist/src/cose/index.js"
},
"./crypto": {
"types": "./dist/src/crypto/index.d.ts",
"import": "./dist/src/crypto/index.js"
},
"./jumbf": {
"types": "./dist/src/jumbf/index.d.ts",
"import": "./dist/src/jumbf/index.js"
},
"./manifest": {
"types": "./dist/src/manifest/index.d.ts",
"import": "./dist/src/manifest/index.js"
},
"./rfc3161": {
"types": "./dist/src/rfc3161/index.d.ts",
"import": "./dist/src/rfc3161/index.js"
}
},
"files": [
"dist/src"
],
"devDependencies": {
"@eslint/js": "^9.12.0",
"@changesets/cli": "^2.27.9",
"@changesets/get-github-info": "^0.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"github-actions-ctrf": "^0.0.54",
"mocha": "^11.0.1",
"mocha-ctrf-json-reporter": "^0.0.6",
"prettier": "3.4.2",
"replace-in-file": "^8.2.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1"
},
"dependencies": {
"@peculiar/x509": "^1.12.2",
"cbor-x": "^1.6.0",
"crc-32": "^1.2.2",
"pkijs": "^3.2.4",
"schema-dts": "^1.1.2",
"typed-binary": "^4.1.1",
"uuid": "^11.0.2"
},
"mocha": {
"require": [
"ts-node/register",
"tests/ensure-example-files-hook.ts"
],
"import": "tsx/esm"
},
"scripts": {
"lint": "eslint src tests",
"format": "prettier --write src tests",
"test": "mocha 'tests/**/*test.ts'",
"build": "rimraf dist && node prebuild.js && tsc -p tsconfig.json; exit_code=$?; node postbuild.js; exit $exit_code",
"changeset": "changeset",
"version": "changeset version && npm install --package-lock-only",
"release": "npm run build && changeset publish"
}
}