-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "pipe",
"version": "1.0.2",
"description": "JavaScript UI Library",
"main": "index.js",
"scripts": {
"test": "npx jest",
"lint": "npx eslint packages",
"style": "npx prettier -c packages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmallen99/pipe.git"
},
"keywords": [
"UI",
"JavaScript",
"RxJS"
],
"author": "Henry Allen",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmallen99/pipe/issues"
},
"homepage": "https://github.com/hmallen99/pipe#readme",
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@eslint/js": "^9.2.0",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.4.17",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-workspaces": "^0.10.0",
"globals": "^15.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"dependencies": {
"rxjs": "^7.8.1"
},
"workspaces": [
"packages/pipe",
"apps/*"
]
}