-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 KB
/
package.json
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
{
"$schema": "http://json.schemastore.org/package",
"name": "@kayahr/observable",
"version": "1.1.1",
"type": "module",
"description": "Simple observable implementation",
"keywords": [
"observable"
],
"license": "MIT",
"author": "Klaus Reimer <[email protected]>",
"repository": "github:kayahr/observable",
"homepage": "https://github.com/kayahr/observable",
"bugs": "https://github.com/kayahr/observable/issues",
"funding": "https://github.com/kayahr/observable?sponsor=1",
"exports": "./lib/main/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"lib/main/",
"src/main/"
],
"scripts": {
"clean": "rimraf lib",
"build": "run-s build:*",
"build:compile": "tsc",
"test": "run-s test:*",
"test:unit": "vitest run",
"test:lint": "eslint --max-warnings 0",
"test:apidoc": "typedoc --emit none",
"test:spell": "cspell --no-progress --no-summary",
"apidoc": "typedoc",
"install:browser": "playwright install chromium",
"prepare": "run-s install:browser clean build"
},
"devDependencies": {
"@kayahr/eslint-config": "3.3.0",
"@types/node": "22.10.2",
"@vitest/browser": "2.1.8",
"@vitest/coverage-v8": "2.1.8",
"cspell": "8.17.1",
"es-observable-tests": "0.3.0",
"npm-run-all": "4.1.5",
"playwright": "1.49.1",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"source-map-support": "0.5.21",
"typedoc": "0.27.6",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"dependencies": {
"symbol-observable": "^4.0.0"
}
}