-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.07 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
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
{
"name": "@opendecree/sdk",
"version": "0.4.0-alpha.1",
"description": "TypeScript SDK for OpenDecree — schema-driven configuration management (alpha)",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"generate": "rm -rf src/generated && buf generate",
"gen-version": "node scripts/gen-version.mjs",
"check:version": "node scripts/gen-version.mjs --check",
"build": "node scripts/gen-version.mjs && tsc",
"docs": "typedoc",
"lint": "biome check src/ test/ integration/",
"format": "biome format --write src/ test/ integration/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "DECREE_INTEGRATION=1 sh -c 'cd integration && vitest run'",
"pre-commit": "biome check src/ test/ integration/ && tsc --noEmit && vitest run",
"prepublishOnly": "npm run pre-commit && npm run build",
"size": "size-limit"
},
"keywords": [
"config",
"configuration",
"decree",
"grpc",
"schema",
"management"
],
"author": "Zeev Dreifuss",
"license": "Apache-2.0",
"homepage": "https://github.com/opendecree/decree-typescript",
"repository": {
"type": "git",
"url": "https://github.com/opendecree/decree-typescript.git"
},
"bugs": {
"url": "https://github.com/opendecree/decree-typescript/issues"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@size-limit/preset-small-lib": "^12.1.0",
"@vitest/coverage-v8": "^4.1.5",
"size-limit": "^12.1.0",
"ts-proto": "^2.11.6",
"typedoc": "^0.28.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"supportedServerVersion": ">=0.8.0,<1.0.0"
}