-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.4 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
{
"name": "@varlock/1password-plugin",
"description": "Varlock plugin to load data from 1Password vaults",
"version": "0.3.3",
"type": "module",
"homepage": "https://varlock.dev/plugins/1password/",
"bugs": "https://github.com/dmno-dev/varlock/issues",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/varlock.git",
"directory": "packages/plugins/1password"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./plugin": "./dist/plugin.cjs"
},
"files": ["dist"],
"scripts": {
"dev": "bun run copy-wasm && tsup --watch",
"build": "tsup && bun run copy-wasm",
"copy-wasm": "mkdir -p dist || true && cp node_modules/@1password/sdk-core/nodejs/core_bg.wasm ./dist",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"varlock",
"plugin",
"varlock-plugin",
"1password",
"env",
".env",
"dotenv",
"environment variables",
"env vars",
"config"
],
"author": "dmno-dev",
"license": "MIT",
"engines": {
"node": ">=22"
},
"peerDependencies": {
"varlock": "workspace:^"
},
"devDependencies": {
"@1password/sdk": "0.4.1-beta.1",
"@1password/sdk-core": "0.4.1-beta.1",
"@env-spec/utils": "workspace:^",
"@types/node": "catalog:",
"import-meta-resolve": "^4.2.0",
"tsup": "catalog:",
"varlock": "workspace:^",
"vitest": "catalog:"
}
}