-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 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
{
"name": "@layerv/qurl",
"version": "0.1.0",
"description": "TypeScript SDK for the QURL API - secure, time-limited access links",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"lint": "eslint src/",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"prepublishOnly": "npm run build"
},
"keywords": [
"qurl",
"layerv",
"security",
"ai-agents",
"zero-trust"
],
"author": "LayerV AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/layervai/qurl-typescript"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^10.2.0",
"prettier": "^3.8.3",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
}
}