@fest-lib/object 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 +21 -0
- package/README.md +423 -0
- package/dist/object.js +1717 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fest-lib/object",
|
|
3
|
+
"description": "Reactive object utilities and helpers (fest-lib)",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=20"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/fest-live/object.ts.git"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/fest-live/object.ts/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/fest-live/object.ts#readme",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"fest",
|
|
24
|
+
"fest-lib",
|
|
25
|
+
"reactivity",
|
|
26
|
+
"observable",
|
|
27
|
+
"typescript"
|
|
28
|
+
],
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"main": "./dist/object.js",
|
|
34
|
+
"module": "./dist/object.js",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"import": "./dist/object.js",
|
|
38
|
+
"default": "./dist/object.js"
|
|
39
|
+
},
|
|
40
|
+
"./package.json": "./package.json"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"@fest-lib/core": "^0.1.0"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"test": "npm run test:node && npm run test:deno && npm run test:browser",
|
|
47
|
+
"test:node": "node ./scripts/run-node-tests.mjs",
|
|
48
|
+
"test:deno": "deno test --unstable-sloppy-imports --allow-read --import-map=./test/deno.import_map.json ./test/Subscribe.deno.test.ts",
|
|
49
|
+
"test:browser:install": "npx @puppeteer/browsers install chrome-headless-shell@stable --path ./chrome-headless-shell",
|
|
50
|
+
"test:browser": "node ./scripts/run-browser-tests.mjs",
|
|
51
|
+
"test:dev": "npm run demo",
|
|
52
|
+
"dev": "npm run demo",
|
|
53
|
+
"demo": "vite --host 0.0.0.0",
|
|
54
|
+
"watch": "vite build --watch",
|
|
55
|
+
"build": "vite build --config vite.config.js && npm run docs && npm run docs:md",
|
|
56
|
+
"build:publish": "FEST_NPM_IMPORTS=1 vite build --config vite.config.js",
|
|
57
|
+
"prepack": "npm run build:publish",
|
|
58
|
+
"preview": "vite preview",
|
|
59
|
+
"publish": "npm publish --access public",
|
|
60
|
+
"docs": "typedoc ./src/index.ts --options ./typedoc.json --out ./docs --tsconfig ./tsconfig.json --excludeExternals --excludePrivate --excludeProtected --skipErrorChecking",
|
|
61
|
+
"docs:clean": "rm -rf ./docs && typedoc --options ./typedoc.json",
|
|
62
|
+
"docs:md": "typedoc --options ./typedoc.md.json",
|
|
63
|
+
"docs:md:clean": "rm -rf ./docs-md && typedoc --options ./typedoc.md.json"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@puppeteer/browsers": "^2.13.0",
|
|
67
|
+
"@types/node": ">=22.8.1",
|
|
68
|
+
"puppeteer": "^24.42.0",
|
|
69
|
+
"typescript": ">=6.0.0-beta",
|
|
70
|
+
"vite": "^8.0.7",
|
|
71
|
+
"vite-plugin-dynamic-import": ">=1.6.0",
|
|
72
|
+
"vite-plugin-external": ">=6.2.2",
|
|
73
|
+
"vite-plugin-optimizer": ">=1.4.3"
|
|
74
|
+
}
|
|
75
|
+
}
|