-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "@predicatesystems/authority",
"version": "0.4.2",
"description": "TypeScript authority SDK for Predicate Systems sidecar integration.",
"license": "(MIT OR Apache-2.0)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "biome check src tests",
"test": "vitest run",
"test:integration": "RUN_SIDECAR_INTEGRATION_TESTS=true vitest run tests/integration.sidecar.test.ts",
"test:watch": "vitest",
"smoke:npm": "bash ./smoke-from-npm.sh",
"security:audit": "npm audit --audit-level=high",
"precommit": "npm run lint && npm run typecheck && npm test",
"prepare": "husky",
"clean": "rm -rf dist",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PredicateSystems/predicate-authority-ts.git"
},
"keywords": [
"predicate",
"authority",
"typescript",
"sdk",
"security"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.10",
"husky": "^9.1.7",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}