-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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
57
58
59
{
"name": "proxy-collections",
"version": "0.1.0",
"description": "Collections of objects that rely on remote data sources. Hides the complexity of fetching and caching data from a remote source",
"type": "module",
"author": "smnbbrv",
"license": "MIT",
"scripts": {
"start": "vite build --watch",
"build": "vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"clear": "rm -rf dist",
"patch": "node ci/patcher.js",
"lint": "eslint src/**/*.ts",
"release": "semantic-release"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-run-all": "^4.1.5",
"rxjs": "^7.8.1",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"rxjs": "^7.8.1"
}
}