-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 KB
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
{
"name": "rextream",
"version": "1.3.0",
"description": "Everything is streams.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"examples": "node ./dist/examples.js",
"build": "rimraf dist && npm run build:tsc && npm run build:esbuild",
"build:tsc": "tsc",
"build:esbuild": "node build.js",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tauseefk/rex.git"
},
"keywords": ["observables", "streams"],
"author": "tauseefk",
"license": "MIT",
"bugs": {
"url": "https://github.com/tauseefk/rex/issues"
},
"homepage": "https://github.com/tauseefk/rex#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"esbuild": "^0.25.5",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
}
}