-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "@ee-tools/rxs",
"version": "0.1.6",
"description": "A Super simple, type-safe, and blaizngly fast RxJS store.",
"author": {
"name": "Ethan Elliott"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ethanelliott/rxs.git"
},
"packageManager": "[email protected]",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "tsc",
"dev": "vitest",
"test": "vitest run",
"release": "yarn build && changeset publish",
"version": "changeset version",
"format": "prettier --write .",
"playground": "tsnd playground/index.ts"
},
"peerDependencies": {
"rxjs": "^7.8.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^20.2.5",
"prettier": "^2.8.4",
"rxjs": "^7.8.0",
"ts-node-dev": "^2.0.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.31.1"
}
}