-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.47 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.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
{
"name": "secure-pdf",
"version": "1.0.0",
"description": "SecurePDF (SPDF) - A secure document format with enhanced cryptographic protection",
"keywords": ["pdf", "security", "cryptography", "documents", "blockchain"],
"author": "SecurePDF Team",
"license": "MIT",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "node setup.js",
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:security": "turbo run test:security",
"test:coverage": "turbo run test --coverage",
"lint": "turbo run lint",
"lint:fix": "turbo run lint --fix",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "turbo run type-check",
"validate": "npm run type-check && npm run lint && npm run test",
"example:create": "node examples/create-example-document.js",
"example:validate": "node examples/validate-spdf.js",
"example:compare": "node examples/compare-formats.js",
"viewer": "open examples/viewer-demo.html"
},
"devDependencies": {
"@types/node": "^20.10.0",
"turbo": "^1.11.0",
"typescript": "^5.3.0",
"prettier": "^3.1.0",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}