@drbaher/draft-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +224 -0
- package/ARCHITECTURE.md +206 -0
- package/CHANGELOG.md +108 -0
- package/FAQ.md +190 -0
- package/GETTING_STARTED.md +263 -0
- package/LICENSE +21 -0
- package/PARAM_SCHEMA.md +341 -0
- package/README.md +305 -0
- package/SECURITY.md +76 -0
- package/draft-cli.mjs +1757 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@drbaher/draft-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Fill placeholders in a legal-document template with parameter values. Part of the contract-operations suite.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"draft": "./draft-cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"main": "./draft-cli.mjs",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./draft-cli.mjs"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"draft-cli.mjs",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"CHANGELOG.md",
|
|
18
|
+
"AGENTS.md",
|
|
19
|
+
"ARCHITECTURE.md",
|
|
20
|
+
"FAQ.md",
|
|
21
|
+
"GETTING_STARTED.md",
|
|
22
|
+
"PARAM_SCHEMA.md",
|
|
23
|
+
"SECURITY.md"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"test": "node --test tests/test_*.mjs",
|
|
27
|
+
"test:quick": "node --test tests/test_t1_bracket.mjs tests/test_schema.mjs tests/test_substitution.mjs",
|
|
28
|
+
"coverage": "node --test --experimental-test-coverage tests/test_*.mjs",
|
|
29
|
+
"smoke": "npm pack && npm install -g $(ls -1t *.tgz | head -n1) && draft --version && draft --help | head -n 5"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"legal",
|
|
33
|
+
"contracts",
|
|
34
|
+
"templates",
|
|
35
|
+
"nda",
|
|
36
|
+
"placeholder",
|
|
37
|
+
"cli"
|
|
38
|
+
],
|
|
39
|
+
"author": "DrBaher",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"homepage": "https://github.com/DrBaher/draft-cli",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "https://github.com/DrBaher/draft-cli.git"
|
|
45
|
+
},
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/DrBaher/draft-cli/issues"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=18.0.0"
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"jszip": "^3.10.1"
|
|
57
|
+
}
|
|
58
|
+
}
|