@powerlines/plugin-crypto 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +294 -0
- package/dist/components/crypto.cjs +117 -0
- package/dist/components/crypto.d.cts +35 -0
- package/dist/components/crypto.d.ts +35 -0
- package/dist/components/crypto.js +117 -0
- package/dist/components/index.cjs +1 -0
- package/dist/components/index.d.cts +26 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/types/index.cjs +1 -0
- package/dist/types/index.d.cts +25 -0
- package/dist/types/index.d.ts +25 -0
- package/dist/types/index.js +1 -0
- package/dist/types/plugin.cjs +1 -0
- package/dist/types/plugin.d.cts +3814 -0
- package/dist/types/plugin.d.ts +3814 -0
- package/dist/types/plugin.js +0 -0
- package/package.json +132 -0
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@powerlines/plugin-crypto",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A Powerlines plugin that provides unique identifier generation capabilities at runtime by adding the `id` builtin module.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "github",
|
|
8
|
+
"url": "https://github.com/storm-software/powerlines.git",
|
|
9
|
+
"directory": "packages/plugin-crypto"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://stormsoftware.com",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://stormsoftware.com/support",
|
|
14
|
+
"email": "support@stormsoftware.com"
|
|
15
|
+
},
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Storm Software",
|
|
18
|
+
"email": "contact@stormsoftware.com",
|
|
19
|
+
"url": "https://stormsoftware.com"
|
|
20
|
+
},
|
|
21
|
+
"maintainers": [
|
|
22
|
+
{
|
|
23
|
+
"name": "Storm Software",
|
|
24
|
+
"email": "contact@stormsoftware.com",
|
|
25
|
+
"url": "https://stormsoftware.com"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"contributors": [
|
|
29
|
+
{
|
|
30
|
+
"name": "Storm Software",
|
|
31
|
+
"email": "contact@stormsoftware.com",
|
|
32
|
+
"url": "https://stormsoftware.com"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"funding": {
|
|
36
|
+
"type": "github",
|
|
37
|
+
"url": "https://github.com/sponsors/storm-software"
|
|
38
|
+
},
|
|
39
|
+
"license": "Apache-2.0",
|
|
40
|
+
"private": false,
|
|
41
|
+
"exports": {
|
|
42
|
+
"./package.json": "./package.json",
|
|
43
|
+
".": {
|
|
44
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
45
|
+
"require": {
|
|
46
|
+
"types": "./dist/index.d.cts",
|
|
47
|
+
"default": "./dist/index.cjs"
|
|
48
|
+
},
|
|
49
|
+
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
|
|
50
|
+
},
|
|
51
|
+
"./index": {
|
|
52
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
53
|
+
"require": {
|
|
54
|
+
"types": "./dist/index.d.cts",
|
|
55
|
+
"default": "./dist/index.cjs"
|
|
56
|
+
},
|
|
57
|
+
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
|
|
58
|
+
},
|
|
59
|
+
"./types": {
|
|
60
|
+
"import": {
|
|
61
|
+
"types": "./dist/types/index.d.ts",
|
|
62
|
+
"default": "./dist/types/index.js"
|
|
63
|
+
},
|
|
64
|
+
"require": {
|
|
65
|
+
"types": "./dist/types/index.d.cts",
|
|
66
|
+
"default": "./dist/types/index.cjs"
|
|
67
|
+
},
|
|
68
|
+
"default": {
|
|
69
|
+
"types": "./dist/types/index.d.ts",
|
|
70
|
+
"default": "./dist/types/index.js"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"./types/*": {
|
|
74
|
+
"import": {
|
|
75
|
+
"types": "./dist/types/*.d.ts",
|
|
76
|
+
"default": "./dist/types/*.js"
|
|
77
|
+
},
|
|
78
|
+
"require": {
|
|
79
|
+
"types": "./dist/types/*.d.cts",
|
|
80
|
+
"default": "./dist/types/*.cjs"
|
|
81
|
+
},
|
|
82
|
+
"default": {
|
|
83
|
+
"types": "./dist/types/*.d.ts",
|
|
84
|
+
"default": "./dist/types/*.js"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"./components": {
|
|
88
|
+
"import": {
|
|
89
|
+
"types": "./dist/components/index.d.ts",
|
|
90
|
+
"default": "./dist/components/index.js"
|
|
91
|
+
},
|
|
92
|
+
"require": {
|
|
93
|
+
"types": "./dist/components/index.d.cts",
|
|
94
|
+
"default": "./dist/components/index.cjs"
|
|
95
|
+
},
|
|
96
|
+
"default": {
|
|
97
|
+
"types": "./dist/components/index.d.ts",
|
|
98
|
+
"default": "./dist/components/index.js"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"./components/*": {
|
|
102
|
+
"import": {
|
|
103
|
+
"types": "./dist/components/*.d.ts",
|
|
104
|
+
"default": "./dist/components/*.js"
|
|
105
|
+
},
|
|
106
|
+
"require": {
|
|
107
|
+
"types": "./dist/components/*.d.cts",
|
|
108
|
+
"default": "./dist/components/*.cjs"
|
|
109
|
+
},
|
|
110
|
+
"default": {
|
|
111
|
+
"types": "./dist/components/*.d.ts",
|
|
112
|
+
"default": "./dist/components/*.js"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"files": ["dist/**/*"],
|
|
117
|
+
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
118
|
+
"dependencies": {
|
|
119
|
+
"@powerlines/plugin-env": "^0.3.0",
|
|
120
|
+
"@storm-software/config-tools": "^1.188.6",
|
|
121
|
+
"@stryke/path": "^0.15.5",
|
|
122
|
+
"defu": "^6.1.4",
|
|
123
|
+
"powerlines": "^0.4.0"
|
|
124
|
+
},
|
|
125
|
+
"devDependencies": {
|
|
126
|
+
"@powerlines/nx": "^0.4.0",
|
|
127
|
+
"@storm-software/tsup": "^0.2.4",
|
|
128
|
+
"@types/node": "^22.18.11"
|
|
129
|
+
},
|
|
130
|
+
"publishConfig": { "access": "public" },
|
|
131
|
+
"gitHead": "f4d0c8a8f0036ac8de46ac96afd9336a390a7268"
|
|
132
|
+
}
|