-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "@interactive-os/json-document-proposed-changes",
"version": "0.1.0",
"description": "Official proposed document change review extension functions for json-document documents.",
"type": "module",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/developer-1px/json-document.git",
"directory": "packages/proposed-changes"
},
"keywords": [
"@interactive-os/json-document",
"proposed-changes",
"review",
"patch",
"headless"
],
"files": [
"README.md",
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "vitest run --config vitest.config.ts",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"verify": "npm run typecheck && npm test && npm run build"
},
"peerDependencies": {
"@interactive-os/json-document": "^1.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"vitest": "^4.1.7",
"zod": "^4.0.0",
"@interactive-os/json-document": "*"
}
}