dubc-client-global-css 0.0.1
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/dist/index.d.ts +2 -0
- package/dist/index.js +8 -0
- package/package.json +34 -0
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dubc-client-global-css",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"description": "Tiny module to keep track of a global style sheet for web components.",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"README.md",
|
|
10
|
+
"dist/index.js",
|
|
11
|
+
"dist/index.d.ts"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsc",
|
|
15
|
+
"prepare": "tsc",
|
|
16
|
+
"test": "vitest --coverage"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/p-jack/dubc.git"
|
|
21
|
+
},
|
|
22
|
+
"author": "Paul Jack",
|
|
23
|
+
"license": "BSD-3-Clause",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/p-jack/dubc/issues"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/p-jack/dubc#readme",
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
30
|
+
"jsdom": "^29.1.1",
|
|
31
|
+
"typescript": "^6.0.3",
|
|
32
|
+
"vitest": "^4.1.7"
|
|
33
|
+
}
|
|
34
|
+
}
|