@basestack/flags-wc 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/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@basestack/flags-wc",
3
+ "version": "0.0.1",
4
+ "main": "./dist/sdk/index.js",
5
+ "module": "./dist/sdk/index.js",
6
+ "devDependencies": {
7
+ "@biomejs/biome": "2.3.14",
8
+ "@stencil/core": "^4.42.1",
9
+ "@vitest/coverage-v8": "^4.0.18",
10
+ "concurrently": "^9.2.1",
11
+ "jest": "^30.2.0",
12
+ "jest-environment-node": "^30.2.0",
13
+ "jsdom": "^28.0.0",
14
+ "tsdown": "^0.20.3",
15
+ "typescript": "^5.5.4",
16
+ "vitest": "^4.0.18"
17
+ },
18
+ "exports": {
19
+ ".": {
20
+ "import": "./dist/sdk/index.js",
21
+ "types": "./dist/sdk/index.d.ts"
22
+ },
23
+ "./components": {
24
+ "import": "./dist/components/index.js",
25
+ "types": "./dist/components/index.d.ts"
26
+ },
27
+ "./components/*": {
28
+ "import": "./dist/components/*.js",
29
+ "types": "./dist/components/*.d.ts"
30
+ }
31
+ },
32
+ "browserslist": [
33
+ "defaults",
34
+ ">0.35%",
35
+ "not IE 11",
36
+ "maintained node versions"
37
+ ],
38
+ "description": "Feature flag web components built with StencilJS, bundled with tsdown, and distributed as ESM-only.",
39
+ "engines": {
40
+ "node": ">=18.17.0"
41
+ },
42
+ "files": [
43
+ "dist"
44
+ ],
45
+ "license": "MIT",
46
+ "packageManager": "bun@1.3.8",
47
+ "publishConfig": {
48
+ "access": "public"
49
+ },
50
+ "scripts": {
51
+ "build": "bun run clean && stencil build --prod && tsdown",
52
+ "dev": "stencil build --watch",
53
+ "dev:sdk": "tsdown --watch",
54
+ "dev:all": "bun run build && concurrently \"bun run dev\" \"bun run dev:sdk\"",
55
+ "format": "biome format . --write",
56
+ "check": "bunx biome check --write",
57
+ "lint": "biome lint .",
58
+ "test": "vitest run",
59
+ "test:watch": "vitest",
60
+ "clean": "rm -rf dist",
61
+ "update:deps": "bun update -i",
62
+ "prepublishOnly": "bun run lint && bun run test && bun run build"
63
+ },
64
+ "type": "module",
65
+ "types": "./dist/sdk/index.d.ts"
66
+ }