-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1019 Bytes
/
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
{
"name": "@keeoth/observatory",
"type": "module",
"version": "0.2.0",
"private": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release": "npm run test && npm run build && npm publish && git push --follow-tags",
"lint": "eslint . --fix",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@types/node": "^20.11.5",
"eslint": "^8.56.0",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.1",
"vitest": "^1.2.1"
},
"lint-staged": {
"*.ts": "npm run lint"
},
"dependencies": {
"rxjs": "^7.8.1"
}
}